from pathlib import Path
from compare import ReferenceComparer, get_last_two_commits
Find commits to compare¶
By default, the notebook compares last two commits(ref1hash is the older one and ref2hash is the newer one). You can customise this by changing the ref1_hash and ref2_hash variables or by providing REF1_HASH and REF2_HASH commit values. You can also provide custom spectrum paths for the two hashes with respect to the root directory for that commit.
import os
ref1_hash = os.getenv('REF1_HASH')
ref2_hash = os.getenv('REF2_HASH')
if not (ref1_hash and ref2_hash):
ref1_hash, ref2_hash = get_last_two_commits()
if not (ref1_hash and ref2_hash):
raise ValueError("Could not get commit hashes.")
if os.getenv('CUSTOM_REF1_SPECTRUM_PATH'):
custom_ref1_spectrum_path = os.getenv('CUSTOM_REF1_SPECTRUM_PATH')
else:
custom_ref1_spectrum_path = 'tardis/spectrum/tests/test_spectrum_solver/test_spectrum_solver/TestSpectrumSolver.h5'
if os.getenv('CUSTOM_REF2_SPECTRUM_PATH'):
custom_ref2_spectrum_path = os.getenv('CUSTOM_REF2_SPECTRUM_PATH')
else:
custom_ref2_spectrum_path = 'tardis/spectrum/tests/test_spectrum_solver/test_spectrum_solver/TestSpectrumSolver.h5'
ref1_hash, ref2_hash
('b2fdf418ac1a3631f8c3d2a5f392b6ebfa09ba0b',
'552b56fc2ab17381647de752e18e2db96e0b056e')
Example Values¶
Below are example values you can test the notebook with.
# ref1_hash="170f1a2c0d8c6db518a4b9a0f4cb9b657aaa61b6"
# ref2_hash="d9fd3bb659d185bd9ece10b8e2175cf497ea84c5"
# custom_ref1_spectrum_path = 'tardis/spectrum/tests/test_spectrum_solver/test_spectrum_solver/TestSpectrumSolver.h5'
# custom_ref2_spectrum_path = 'test_spectrum_solver/test_spectrum_solver/TestSpectrumSolver.h5'
Initialise the ReferenceComparer class¶
comparer = ReferenceComparer(ref1_hash=ref1_hash, ref2_hash=ref2_hash, print_path=True)
comparer.setup()
comparer.diff_analyzer.display_diff_tree(comparer.dcmp)
Created temporary directory at /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w
ā .github/ ā ā actions/ ā ā ā setup_env/ ā ā workflows/ ā arepo_data/
ā atom_data/
ā ā nlte_atom_data/
ā ā stardis_atom_data/
ā tardis/ ā ā opacities/ ā ā ā tests/ ā ā ā ā test_tau_sobolev/ ā ā ā ā ā± test_calculate_beta_sobolevs.npy ā ā ā ā ā± test_calculate_sobolev_line_opacity.h5 ā ā plasma/ ā ā ā equilibrium/ ā ā ā ā tests/ ā ā ā ā ā test_level_populations/ ā ā ā ā ā ā test_level_population_solver/ ā ā ā ā ā ā ā± test_solve__collisional_rate_solver0-radiative_transitions0__.h5 ā ā ā ā ā test_rate_matrix/ ā ā ā ā ā ā± test_rate_matrix_solver__collisional_rate_solver0-radiative_transitions0__.h5 ā ā ā tests/ ā ā ā ā test_complete_plasmas/ ā ā ā ā ā test_plasma/ ā ā ā ā ā ā± plasma_unittest_disable_electron_scattering_False.h5 ā ā ā ā ā ā± plasma_unittest_disable_electron_scattering_True.h5 ā ā ā ā ā ā± plasma_unittest_excitation_dilute-lte.h5 ā ā ā ā ā ā± plasma_unittest_excitation_lte.h5 ā ā ā ā ā ā± plasma_unittest_helium_treatment_recomb-nlte.h5 ā ā ā ā ā ā± plasma_unittest_helium_treatment_recomb-nlte_delta_treatment_0.5.h5 ā ā ā ā ā ā± plasma_unittest_initial_t_inner_10000 K.h5 ā ā ā ā ā ā± plasma_unittest_initial_t_rad_10000 K.h5 ā ā ā ā ā ā± plasma_unittest_ionization_lte.h5 ā ā ā ā ā ā± plasma_unittest_ionization_nebular.h5 ā ā ā ā ā ā± plasma_unittest_line_interaction_type_downbranch.h5 ā ā ā ā ā ā± plasma_unittest_line_interaction_type_macroatom.h5 ā ā ā ā ā ā± plasma_unittest_line_interaction_type_scatter.h5 ā ā ā ā ā ā± plasma_unittest_nlte.h5 ā ā ā ā ā ā± plasma_unittest_nlte_classical_nebular.h5 ā ā ā ā ā ā± plasma_unittest_nlte_coronal_approximation.h5 ā ā ā ā ā ā± plasma_unittest_radiative_rates_type_blackbody.h5 ā ā ā ā ā ā± plasma_unittest_radiative_rates_type_detailed.h5 ā ā ā ā ā ā± plasma_unittest_radiative_rates_type_detailed_w_epsilon_1e-10.h5 ā ā ā ā ā ā± plasma_unittest_radiative_rates_type_dilute-blackbody.h5 ā ā ā ā test_hdf_plasma/ ā ā ā ā ā± test_hdf_levels.h5 ā ā ā ā ā± test_hdf_plasma__beta_sobolev__.npy ā ā ā ā ā± test_hdf_plasma__general_level_boltzmann_factor__.npy ā ā ā ā ā± test_hdf_plasma__j_blues__.npy ā ā ā ā ā± test_hdf_plasma__level_boltzmann_factor__.npy ā ā ā ā ā± test_hdf_plasma__level_number_density__.npy ā ā ā ā ā± test_hdf_plasma__phi__.npy ā ā ā ā ā± test_hdf_plasma__stimulated_emission_factor__.npy ā ā ā ā ā± test_hdf_plasma__tau_sobolevs__.npy ā ā ā ā ā± test_hdf_plasma__transition_probabilities__.npy ā ā ā ā test_nlte_excitation/ ā ā ā ā test_nlte_solver/ ā ā ā ā ā± test_jacobian_matrix.npy ā ā ā ā test_plasma_continuum/ ā ā ā ā test_tardis_model_density_config/ ā ā ā ā ā± test_isotope_number_densities.h5 ā ā simulation/ ā ā ā tests/ ā ā ā ā test_simulation/ ā ā ā ā ā± test_plasma_estimates__dilution_factor__.h5 ā ā ā ā ā± test_plasma_estimates__j_estimator__.h5 ā ā ā ā ā± test_plasma_estimates__nu_bar_estimator__.h5 ā ā ā ā ā± test_plasma_estimates__output_energies__.h5 ā ā ā ā ā± test_plasma_estimates__output_nus__.h5 ā ā ā ā ā± test_plasma_estimates__t_radiative__.h5 ā ā ā ā ā± test_plasma_state_iterations__iterations_electron_densities__.h5 ā ā ā ā ā± test_plasma_state_iterations__iterations_t_inner__.h5 ā ā ā ā ā± test_plasma_state_iterations__iterations_t_rad__.h5 ā ā ā ā ā± test_plasma_state_iterations__iterations_w__.h5 ā ā spectrum/ ā ā ā tests/ ā ā ā ā test_spectrum_solver/ ā ā ā ā ā test_spectrum_solver/ ā ā ā ā ā ā± TestSpectrumSolver.h5 ā ā tests/ ā ā ā test_tardis_full/ ā ā ā ā test_transport_simple/ ā ā ā ā ā± TestTransportSimple.h5 ā ā ā test_tardis_full_formal_integral/ ā ā ā ā test_transport_simple_formal_integral/ ā ā ā ā ā± test_j_blue_estimators__-1-downbranch__.npy ā ā ā ā ā± test_j_blue_estimators__-1-macroatom__.npy ā ā ā ā ā± test_j_blue_estimators__30-downbranch__.npy ā ā ā ā ā± test_j_blue_estimators__30-macroatom__.npy ā ā ā ā ā± test_simulation__-1-downbranch__.h5 ā ā ā ā ā± test_simulation__-1-macroatom__.h5 ā ā ā ā ā± test_simulation__30-downbranch__.h5 ā ā ā ā ā± test_simulation__30-macroatom__.h5 ā ā ā ā ā± test_spectrum_integrated__-1-downbranch__.npy ā ā ā ā ā± test_spectrum_integrated__-1-macroatom__.npy ā ā ā ā ā± test_spectrum_integrated__30-downbranch__.npy ā ā ā ā ā± test_spectrum_integrated__30-macroatom__.npy ā ā transport/ ā ā ā montecarlo/ ā ā ā ā tests/ ā ā ā ā ā test_continuum/
ā ā ā ā ā test_montecarlo_main_loop/ ā ā ā ā ā ā± test_montecarlo_main_loop.h5 ā ā ā ā ā ā± test_montecarlo_main_loop_vpacket_log.h5 ā ā ā ā ā test_packet_source/ ā ā ā ā ā ā test_black_body_simple_source/ ā ā ā ā ā ā ā± test_bb_attributes.h5 ā ā ā ā ā ā test_black_body_simple_source_rel/ ā ā ā ā ā ā ā± test_bb_attributes.h5 ā ā ā ā ā test_rpacket_tracker/ ā ā ā ā ā test_weighted_packet_source/ ā ā ā ā ā ā test_black_body_weighted_source/ ā ā ā ā ā ā ā± test_bb_attributes.h5 ā ā ā ā ā ā ā± test_bb_energies.npy ā ā ā ā ā ā ā± test_bb_nus.npy ā ā visualization/ ā ā ā tools/ ā ā ā ā tests/ ā ā ā ā ā test_liv_plot/ ā ā ā ā ā ā test_liv_plotter/ ā ā ā ā ā ā ā± test_generate_plot_mpl__plotter_generate_plot_mpl0__.h5 ā ā ā ā ā ā ā± test_generate_plot_mpl__plotter_generate_plot_mpl1__.h5 ā ā ā ā ā ā ā± test_generate_plot_mpl__plotter_generate_plot_mpl2__.h5 ā ā ā ā ā ā ā± test_generate_plot_mpl__plotter_generate_plot_mpl3__.h5 ā ā ā ā ā ā ā± test_generate_plot_mpl__plotter_generate_plot_mpl4__.h5 ā ā ā ā ā ā ā± test_generate_plot_mpl__plotter_generate_plot_mpl5__.h5 ā ā ā ā ā ā ā± test_generate_plot_mpl__plotter_generate_plot_mpl6__.h5 ā ā ā ā ā ā ā± test_generate_plot_mpl__plotter_generate_plot_mpl7__.h5 ā ā ā ā ā ā ā± test_generate_plot_ply__plotter_generate_plot_ply0__.h5 ā ā ā ā ā ā ā± test_generate_plot_ply__plotter_generate_plot_ply1__.h5 ā ā ā ā ā ā ā± test_generate_plot_ply__plotter_generate_plot_ply2__.h5 ā ā ā ā ā ā ā± test_generate_plot_ply__plotter_generate_plot_ply3__.h5 ā ā ā ā ā ā ā± test_generate_plot_ply__plotter_generate_plot_ply4__.h5 ā ā ā ā ā ā ā± test_generate_plot_ply__plotter_generate_plot_ply5__.h5 ā ā ā ā ā ā ā± test_generate_plot_ply__plotter_generate_plot_ply6__.h5 ā ā ā ā ā ā ā± test_generate_plot_ply__plotter_generate_plot_ply7__.h5 ā ā ā ā ā ā ā± test_prepare_plot_data__plotter_prepare_plot_data0-plot_data__.npy ā ā ā ā ā ā ā± test_prepare_plot_data__plotter_prepare_plot_data1-plot_data__.npy ā ā ā ā ā ā ā± test_prepare_plot_data__plotter_prepare_plot_data2-plot_data__.npy ā ā ā ā ā ā ā± test_prepare_plot_data__plotter_prepare_plot_data3-plot_data__.npy ā ā ā ā ā ā ā± test_prepare_plot_data__plotter_prepare_plot_data4-plot_data__.npy ā ā ā ā ā ā ā± test_prepare_plot_data__plotter_prepare_plot_data5-plot_data__.npy ā ā ā ā ā ā ā± test_prepare_plot_data__plotter_prepare_plot_data6-plot_data__.npy ā ā ā ā ā ā ā± test_prepare_plot_data__plotter_prepare_plot_data7-plot_data__.npy ā ā ā ā ā test_sdec_plot/ ā ā ā ā ā ā test_sdec_plotter/ ā ā ā ā ā ā ā± test_calculate_plotting_data__plotter_calculate_plotting_data0__.h5 ā ā ā ā ā ā ā± test_calculate_plotting_data__plotter_calculate_plotting_data10__.h5 ā ā ā ā ā ā ā± test_calculate_plotting_data__plotter_calculate_plotting_data11__.h5 ā ā ā ā ā ā ā± test_calculate_plotting_data__plotter_calculate_plotting_data12__.h5 ā ā ā ā ā ā ā± test_calculate_plotting_data__plotter_calculate_plotting_data13__.h5 ā ā ā ā ā ā ā± test_calculate_plotting_data__plotter_calculate_plotting_data14__.h5 ā ā ā ā ā ā ā± test_calculate_plotting_data__plotter_calculate_plotting_data15__.h5 ā ā ā ā ā ā ā± test_calculate_plotting_data__plotter_calculate_plotting_data1__.h5 ā ā ā ā ā ā ā± test_calculate_plotting_data__plotter_calculate_plotting_data2__.h5 ā ā ā ā ā ā ā± test_calculate_plotting_data__plotter_calculate_plotting_data3__.h5 ā ā ā ā ā ā ā± test_calculate_plotting_data__plotter_calculate_plotting_data4__.h5 ā ā ā ā ā ā ā± test_calculate_plotting_data__plotter_calculate_plotting_data5__.h5 ā ā ā ā ā ā ā± test_calculate_plotting_data__plotter_calculate_plotting_data6__.h5 ā ā ā ā ā ā ā± test_calculate_plotting_data__plotter_calculate_plotting_data7__.h5 ā ā ā ā ā ā ā± test_calculate_plotting_data__plotter_calculate_plotting_data8__.h5 ā ā ā ā ā ā ā± test_calculate_plotting_data__plotter_calculate_plotting_data9__.h5 ā ā ā ā ā ā ā± test_generate_plot_mpl__plotter_generate_plot_ply0__.h5 ā ā ā ā ā ā ā± test_generate_plot_mpl__plotter_generate_plot_ply10__.h5 ā ā ā ā ā ā ā± test_generate_plot_mpl__plotter_generate_plot_ply11__.h5 ā ā ā ā ā ā ā± test_generate_plot_mpl__plotter_generate_plot_ply12__.h5 ā ā ā ā ā ā ā± test_generate_plot_mpl__plotter_generate_plot_ply13__.h5 ā ā ā ā ā ā ā± test_generate_plot_mpl__plotter_generate_plot_ply14__.h5 ā ā ā ā ā ā ā± test_generate_plot_mpl__plotter_generate_plot_ply15__.h5 ā ā ā ā ā ā ā± test_generate_plot_mpl__plotter_generate_plot_ply1__.h5 ā ā ā ā ā ā ā± test_generate_plot_mpl__plotter_generate_plot_ply2__.h5 ā ā ā ā ā ā ā± test_generate_plot_mpl__plotter_generate_plot_ply3__.h5 ā ā ā ā ā ā ā± test_generate_plot_mpl__plotter_generate_plot_ply4__.h5 ā ā ā ā ā ā ā± test_generate_plot_mpl__plotter_generate_plot_ply5__.h5 ā ā ā ā ā ā ā± test_generate_plot_mpl__plotter_generate_plot_ply6__.h5 ā ā ā ā ā ā ā± test_generate_plot_mpl__plotter_generate_plot_ply7__.h5 ā ā ā ā ā ā ā± test_generate_plot_mpl__plotter_generate_plot_ply8__.h5 ā ā ā ā ā ā ā± test_generate_plot_mpl__plotter_generate_plot_ply9__.h5
comparer.compare()
Displaying heatmap for key /plot_data_hdf/_7y in file test_generate_plot_mpl__plotter_generate_plot_ply8__.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 9.4e+21 |
| max | 1.9e+22 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 1.9e-16 |
| max | 3.8e-16 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter Displaying heatmap for key /plot_data_hdf/_9y in file test_generate_plot_mpl__plotter_generate_plot_ply8__.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 6.1e+23 |
| max | 1.2e+24 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 3.3e-16 |
| max | 6.5e-16 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter
Displaying heatmap for key /plot_data_hdf/_6y in file test_generate_plot_mpl__plotter_generate_plot_ply8__.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 9.5e+21 |
| max | 1.9e+22 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 1.1e-16 |
| max | 2.2e-16 |
Significant difference detected in test_generate_plot_mpl__plotter_generate_plot_ply8__.h5, key=/plot_data_hdf/_5y Maximum relative difference: 1.20e-14 (Versions differ by 1.20e-12%)
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter Displaying heatmap for key /plot_data_hdf/_5y in file test_generate_plot_mpl__plotter_generate_plot_ply8__.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 2.9e+25 |
| max | 5.9e+25 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 6.1e-15 |
| max | 1.2e-14 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter Displaying heatmap for key /plot_data_hdf/_2y in file test_generate_plot_mpl__plotter_generate_plot_ply8__.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 1.4e+24 |
| max | 2.7e+24 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 1.7e-15 |
| max | 3.3e-15 |
Significant difference detected in test_calculate_plotting_data__plotter_calculate_plotting_data2__.h5, key=/plot_data_hdf/absorption_luminosities_df Maximum relative difference: 2.23e-14 (Versions differ by 2.23e-12%)
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter ================================================== Summary for test_generate_plot_mpl__plotter_generate_plot_ply8__.h5: Total number of keys- in ref1: 25, in ref2: 25 Number of keys with different names in ref1 and ref2: 0 Number of keys with same name but different data in ref1 and ref2: 5 Number of totally same keys: 20 ================================================== Displaying heatmap for key /plot_data_hdf/absorption_luminosities_df in file test_calculate_plotting_data__plotter_calculate_plotting_data2__.h5 Visualising Absolute Differences
| Ā | other | 1401 | 2001 |
|---|---|---|---|
| mean | 1.3e-30 | 2.2e-30 | 1.6e-33 |
| max | 5.7e-28 | 3.1e-27 | 1.6e-30 |
Visualising Relative Differences
| Ā | other | 1401 | 2001 |
|---|---|---|---|
| mean | 2.2e-16 | 2.8e-16 | 1.3e-17 |
| max | 2.1e-14 | 2.2e-14 | 3.8e-16 |
Significant difference detected in test_calculate_plotting_data__plotter_calculate_plotting_data2__.h5, key=/plot_data_hdf/total_luminosities_df Maximum relative difference: 2.22e-14 (Versions differ by 2.22e-12%)
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter Displaying heatmap for key /plot_data_hdf/total_luminosities_df in file test_calculate_plotting_data__plotter_calculate_plotting_data2__.h5 Visualising Absolute Differences
| Ā | other | 1401 | 2001 |
|---|---|---|---|
| mean | 3e-30 | 3.8e-30 | 1.6e-33 |
| max | 2.2e-27 | 3.1e-27 | 1.6e-30 |
Visualising Relative Differences
| Ā | other | 1401 | 2001 |
|---|---|---|---|
| mean | 1.6e-16 | 2.1e-16 | 1.1e-17 |
| max | 2.2e-14 | 2.2e-14 | 3.8e-16 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter
Significant difference detected in test_calculate_plotting_data__plotter_calculate_plotting_data2__.h5, key=/plot_data_hdf/emission_luminosities_df Maximum relative difference: 2.22e-14 (Versions differ by 2.22e-12%)
Displaying heatmap for key /plot_data_hdf/emission_luminosities_df in file test_calculate_plotting_data__plotter_calculate_plotting_data2__.h5 Visualising Absolute Differences
| Ā | other | noint | escatter | 1401 | 2001 |
|---|---|---|---|---|---|
| mean | 1.6e-30 | 0 | 0 | 1.5e-30 | 0 |
| max | 2.2e-27 | 0 | 0 | 3e-27 | 0 |
Visualising Relative Differences
| Ā | other | noint | escatter | 1401 | 2001 |
|---|---|---|---|---|---|
| mean | 1.7e-16 | 0 | 0 | 1.8e-16 | 0 |
| max | 2.2e-14 | 0 | 0 | 2.2e-14 | 0 |
Significant difference detected in test_generate_plot_mpl__plotter_generate_plot_ply4__.h5, key=/plot_data_hdf/_7y Maximum relative difference: 6.72e-14 (Versions differ by 6.72e-12%)
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter ================================================== Summary for test_calculate_plotting_data__plotter_calculate_plotting_data2__.h5: Total number of keys- in ref1: 10, in ref2: 10 Number of keys with different names in ref1 and ref2: 0 Number of keys with same name but different data in ref1 and ref2: 3 Number of totally same keys: 7 ================================================== Displaying heatmap for key /plot_data_hdf/_7y in file test_generate_plot_mpl__plotter_generate_plot_ply4__.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 7e-28 |
| max | 1.4e-27 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 3.5e-14 |
| max | 6.7e-14 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter
Significant difference detected in test_generate_plot_mpl__plotter_generate_plot_ply4__.h5, key=/plot_data_hdf/_8y Maximum relative difference: 8.08e-14 (Versions differ by 8.08e-12%)
Displaying heatmap for key /plot_data_hdf/_8y in file test_generate_plot_mpl__plotter_generate_plot_ply4__.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 7.1e-28 |
| max | 1.4e-27 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 4.1e-14 |
| max | 8.1e-14 |
Significant difference detected in test_generate_plot_mpl__plotter_generate_plot_ply4__.h5, key=/plot_data_hdf/_4y Maximum relative difference: 1.08e-13 (Versions differ by 1.08e-11%)
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter Displaying heatmap for key /plot_data_hdf/_4y in file test_generate_plot_mpl__plotter_generate_plot_ply4__.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 7.2e-28 |
| max | 1.4e-27 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 5.5e-14 |
| max | 1.1e-13 |
Significant difference detected in test_generate_plot_mpl__plotter_generate_plot_ply4__.h5, key=/plot_data_hdf/_0y Maximum relative difference: 4.47e-13 (Versions differ by 4.47e-11%)
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter Displaying heatmap for key /plot_data_hdf/_0y in file test_generate_plot_mpl__plotter_generate_plot_ply4__.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 6.7e-27 |
| max | 1.3e-26 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 2.2e-13 |
| max | 4.5e-13 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter
Significant difference detected in test_generate_plot_mpl__plotter_generate_plot_ply4__.h5, key=/plot_data_hdf/_1y Maximum relative difference: 4.10e-14 (Versions differ by 4.10e-12%)
Displaying heatmap for key /plot_data_hdf/_1y in file test_generate_plot_mpl__plotter_generate_plot_ply4__.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 5.7e-28 |
| max | 1.1e-27 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 2.1e-14 |
| max | 4.1e-14 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter
Significant difference detected in test_generate_plot_mpl__plotter_generate_plot_ply4__.h5, key=/plot_data_hdf/_3y Maximum relative difference: 5.64e-13 (Versions differ by 5.64e-11%)
Displaying heatmap for key /plot_data_hdf/_3y in file test_generate_plot_mpl__plotter_generate_plot_ply4__.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 1.6e-27 |
| max | 3.2e-27 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 2.8e-13 |
| max | 5.6e-13 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter
Displaying heatmap for key /plot_data_hdf/_10y in file test_generate_plot_mpl__plotter_generate_plot_ply4__.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 5.1e-29 |
| max | 1e-28 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 3.3e-16 |
| max | 6.5e-16 |
Significant difference detected in test_generate_plot_mpl__plotter_generate_plot_ply4__.h5, key=/plot_data_hdf/_6y Maximum relative difference: 5.41e-13 (Versions differ by 5.41e-11%)
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter Displaying heatmap for key /plot_data_hdf/_6y in file test_generate_plot_mpl__plotter_generate_plot_ply4__.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 1.4e-27 |
| max | 2.7e-27 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 2.7e-13 |
| max | 5.4e-13 |
Significant difference detected in test_generate_plot_mpl__plotter_generate_plot_ply4__.h5, key=/plot_data_hdf/_5y Maximum relative difference: 1.55e-13 (Versions differ by 1.55e-11%)
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter Displaying heatmap for key /plot_data_hdf/_5y in file test_generate_plot_mpl__plotter_generate_plot_ply4__.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 2.4e-27 |
| max | 4.7e-27 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 7.9e-14 |
| max | 1.6e-13 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter
Significant difference detected in test_generate_plot_mpl__plotter_generate_plot_ply4__.h5, key=/plot_data_hdf/_2y Maximum relative difference: 4.04e-13 (Versions differ by 4.04e-11%)
Displaying heatmap for key /plot_data_hdf/_2y in file test_generate_plot_mpl__plotter_generate_plot_ply4__.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 2.7e-27 |
| max | 5.4e-27 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 2e-13 |
| max | 4e-13 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter ================================================== Summary for test_generate_plot_mpl__plotter_generate_plot_ply4__.h5: Total number of keys- in ref1: 27, in ref2: 27 Number of keys with different names in ref1 and ref2: 0 Number of keys with same name but different data in ref1 and ref2: 10 Number of totally same keys: 17 ==================================================
Significant difference detected in test_generate_plot_mpl__plotter_generate_plot_ply5__.h5, key=/plot_data_hdf/_7y Maximum relative difference: 6.72e-14 (Versions differ by 6.72e-12%)
Displaying heatmap for key /plot_data_hdf/_7y in file test_generate_plot_mpl__plotter_generate_plot_ply5__.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 7e-28 |
| max | 1.4e-27 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 3.5e-14 |
| max | 6.7e-14 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter
Significant difference detected in test_generate_plot_mpl__plotter_generate_plot_ply5__.h5, key=/plot_data_hdf/_4y Maximum relative difference: 1.08e-13 (Versions differ by 1.08e-11%)
Displaying heatmap for key /plot_data_hdf/_4y in file test_generate_plot_mpl__plotter_generate_plot_ply5__.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 7.2e-28 |
| max | 1.4e-27 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 5.5e-14 |
| max | 1.1e-13 |
Significant difference detected in test_generate_plot_mpl__plotter_generate_plot_ply5__.h5, key=/plot_data_hdf/_0y Maximum relative difference: 4.47e-13 (Versions differ by 4.47e-11%)
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter Displaying heatmap for key /plot_data_hdf/_0y in file test_generate_plot_mpl__plotter_generate_plot_ply5__.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 6.7e-27 |
| max | 1.3e-26 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 2.2e-13 |
| max | 4.5e-13 |
Significant difference detected in test_generate_plot_mpl__plotter_generate_plot_ply5__.h5, key=/plot_data_hdf/_1y Maximum relative difference: 4.10e-14 (Versions differ by 4.10e-12%)
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter Displaying heatmap for key /plot_data_hdf/_1y in file test_generate_plot_mpl__plotter_generate_plot_ply5__.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 5.7e-28 |
| max | 1.1e-27 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 2.1e-14 |
| max | 4.1e-14 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter
Displaying heatmap for key /plot_data_hdf/_9y in file test_generate_plot_mpl__plotter_generate_plot_ply5__.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 5.1e-29 |
| max | 1e-28 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 3.3e-16 |
| max | 6.5e-16 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter
Significant difference detected in test_generate_plot_mpl__plotter_generate_plot_ply5__.h5, key=/plot_data_hdf/_3y Maximum relative difference: 5.64e-13 (Versions differ by 5.64e-11%)
Displaying heatmap for key /plot_data_hdf/_3y in file test_generate_plot_mpl__plotter_generate_plot_ply5__.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 1.6e-27 |
| max | 3.2e-27 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 2.8e-13 |
| max | 5.6e-13 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter
Significant difference detected in test_generate_plot_mpl__plotter_generate_plot_ply5__.h5, key=/plot_data_hdf/_6y Maximum relative difference: 5.41e-13 (Versions differ by 5.41e-11%)
Displaying heatmap for key /plot_data_hdf/_6y in file test_generate_plot_mpl__plotter_generate_plot_ply5__.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 1.4e-27 |
| max | 2.7e-27 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 2.7e-13 |
| max | 5.4e-13 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter
Significant difference detected in test_generate_plot_mpl__plotter_generate_plot_ply5__.h5, key=/plot_data_hdf/_5y Maximum relative difference: 1.55e-13 (Versions differ by 1.55e-11%)
Displaying heatmap for key /plot_data_hdf/_5y in file test_generate_plot_mpl__plotter_generate_plot_ply5__.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 2.4e-27 |
| max | 4.7e-27 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 7.9e-14 |
| max | 1.6e-13 |
Significant difference detected in test_generate_plot_mpl__plotter_generate_plot_ply5__.h5, key=/plot_data_hdf/_2y Maximum relative difference: 4.04e-13 (Versions differ by 4.04e-11%)
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter
Displaying heatmap for key /plot_data_hdf/_2y in file test_generate_plot_mpl__plotter_generate_plot_ply5__.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 2.7e-27 |
| max | 5.4e-27 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 2e-13 |
| max | 4e-13 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter ================================================== Summary for test_generate_plot_mpl__plotter_generate_plot_ply5__.h5: Total number of keys- in ref1: 25, in ref2: 25 Number of keys with different names in ref1 and ref2: 0 Number of keys with same name but different data in ref1 and ref2: 9 Number of totally same keys: 16 ==================================================
Significant difference detected in test_calculate_plotting_data__plotter_calculate_plotting_data3__.h5, key=/plot_data_hdf/absorption_luminosities_df Maximum relative difference: 2.23e-14 (Versions differ by 2.23e-12%)
Displaying heatmap for key /plot_data_hdf/absorption_luminosities_df in file test_calculate_plotting_data__plotter_calculate_plotting_data3__.h5 Visualising Absolute Differences
| Ā | other | 1401 | 2001 |
|---|---|---|---|
| mean | 1.3e-30 | 2.2e-30 | 1.6e-33 |
| max | 5.7e-28 | 3.1e-27 | 1.6e-30 |
Visualising Relative Differences
| Ā | other | 1401 | 2001 |
|---|---|---|---|
| mean | 2.2e-16 | 2.8e-16 | 1.3e-17 |
| max | 2.1e-14 | 2.2e-14 | 3.8e-16 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter
Significant difference detected in test_calculate_plotting_data__plotter_calculate_plotting_data3__.h5, key=/plot_data_hdf/total_luminosities_df Maximum relative difference: 2.22e-14 (Versions differ by 2.22e-12%)
Displaying heatmap for key /plot_data_hdf/total_luminosities_df in file test_calculate_plotting_data__plotter_calculate_plotting_data3__.h5 Visualising Absolute Differences
| Ā | other | 1401 | 2001 |
|---|---|---|---|
| mean | 3e-30 | 3.8e-30 | 1.6e-33 |
| max | 2.2e-27 | 3.1e-27 | 1.6e-30 |
Visualising Relative Differences
| Ā | other | 1401 | 2001 |
|---|---|---|---|
| mean | 1.6e-16 | 2.1e-16 | 1.1e-17 |
| max | 2.2e-14 | 2.2e-14 | 3.8e-16 |
Significant difference detected in test_calculate_plotting_data__plotter_calculate_plotting_data3__.h5, key=/plot_data_hdf/emission_luminosities_df Maximum relative difference: 2.22e-14 (Versions differ by 2.22e-12%)
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter Displaying heatmap for key /plot_data_hdf/emission_luminosities_df in file test_calculate_plotting_data__plotter_calculate_plotting_data3__.h5 Visualising Absolute Differences
| Ā | other | noint | escatter | 1401 | 2001 |
|---|---|---|---|---|---|
| mean | 1.6e-30 | 0 | 0 | 1.5e-30 | 0 |
| max | 2.2e-27 | 0 | 0 | 3e-27 | 0 |
Visualising Relative Differences
| Ā | other | noint | escatter | 1401 | 2001 |
|---|---|---|---|---|---|
| mean | 1.7e-16 | 0 | 0 | 1.8e-16 | 0 |
| max | 2.2e-14 | 0 | 0 | 2.2e-14 | 0 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter ================================================== Summary for test_calculate_plotting_data__plotter_calculate_plotting_data3__.h5: Total number of keys- in ref1: 10, in ref2: 10 Number of keys with different names in ref1 and ref2: 0 Number of keys with same name but different data in ref1 and ref2: 3 Number of totally same keys: 7 ==================================================
Displaying heatmap for key /plot_data_hdf/_7y in file test_generate_plot_mpl__plotter_generate_plot_ply9__.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 9.4e+21 |
| max | 1.9e+22 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 1.9e-16 |
| max | 3.8e-16 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter
Displaying heatmap for key /plot_data_hdf/_8y in file test_generate_plot_mpl__plotter_generate_plot_ply9__.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 6.1e+23 |
| max | 1.2e+24 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 3.3e-16 |
| max | 6.5e-16 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter
Displaying heatmap for key /plot_data_hdf/_6y in file test_generate_plot_mpl__plotter_generate_plot_ply9__.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 9.5e+21 |
| max | 1.9e+22 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 1.1e-16 |
| max | 2.2e-16 |
Significant difference detected in test_generate_plot_mpl__plotter_generate_plot_ply9__.h5, key=/plot_data_hdf/_5y Maximum relative difference: 1.20e-14 (Versions differ by 1.20e-12%)
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter Displaying heatmap for key /plot_data_hdf/_5y in file test_generate_plot_mpl__plotter_generate_plot_ply9__.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 2.9e+25 |
| max | 5.9e+25 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 6.1e-15 |
| max | 1.2e-14 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter Displaying heatmap for key /plot_data_hdf/_2y in file test_generate_plot_mpl__plotter_generate_plot_ply9__.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 1.4e+24 |
| max | 2.7e+24 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 1.7e-15 |
| max | 3.3e-15 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter ================================================== Summary for test_generate_plot_mpl__plotter_generate_plot_ply9__.h5: Total number of keys- in ref1: 23, in ref2: 23 Number of keys with different names in ref1 and ref2: 0 Number of keys with same name but different data in ref1 and ref2: 5 Number of totally same keys: 18 ==================================================
Significant difference detected in test_calculate_plotting_data__plotter_calculate_plotting_data4__.h5, key=/plot_data_hdf/absorption_luminosities_df Maximum relative difference: 5.41e-13 (Versions differ by 5.41e-11%)
Displaying heatmap for key /plot_data_hdf/absorption_luminosities_df in file test_calculate_plotting_data__plotter_calculate_plotting_data4__.h5 Visualising Absolute Differences
| Ā | other | 1401 | 2001 |
|---|---|---|---|
| mean | 1.6e-29 | 1.1e-29 | 1.7e-30 |
| max | 4.7e-27 | 2.7e-27 | 1.4e-27 |
Visualising Relative Differences
| Ā | other | 1401 | 2001 |
|---|---|---|---|
| mean | 1.9e-15 | 4.2e-15 | 1.9e-15 |
| max | 1.6e-13 | 5.4e-13 | 6.7e-14 |
Significant difference detected in test_calculate_plotting_data__plotter_calculate_plotting_data4__.h5, key=/plot_data_hdf/modeled_spectrum_luminosity Maximum relative difference: 8.08e-14 (Versions differ by 8.08e-12%)
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter Displaying heatmap for key /plot_data_hdf/modeled_spectrum_luminosity in file test_calculate_plotting_data__plotter_calculate_plotting_data4__.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 7.1e-20 |
| max | 1.4e-19 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 4.1e-14 |
| max | 8.1e-14 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter
Significant difference detected in test_calculate_plotting_data__plotter_calculate_plotting_data4__.h5, key=/plot_data_hdf/total_luminosities_df Maximum relative difference: 5.41e-13 (Versions differ by 5.41e-11%)
Displaying heatmap for key /plot_data_hdf/total_luminosities_df in file test_calculate_plotting_data__plotter_calculate_plotting_data4__.h5 Visualising Absolute Differences
| Ā | other | 1401 | 2001 |
|---|---|---|---|
| mean | 2.7e-29 | 2e-29 | 3.1e-30 |
| max | 5.5e-27 | 3.2e-27 | 1.4e-27 |
Visualising Relative Differences
| Ā | other | 1401 | 2001 |
|---|---|---|---|
| mean | 1.7e-15 | 3.6e-15 | 2.2e-15 |
| max | 1.5e-13 | 5.4e-13 | 1.1e-13 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter
Significant difference detected in test_calculate_plotting_data__plotter_calculate_plotting_data4__.h5, key=/plot_data_hdf/emission_luminosities_df Maximum relative difference: 5.64e-13 (Versions differ by 5.64e-11%)
Displaying heatmap for key /plot_data_hdf/emission_luminosities_df in file test_calculate_plotting_data__plotter_calculate_plotting_data4__.h5 Visualising Absolute Differences
| Ā | other | noint | escatter | 1401 | 2001 |
|---|---|---|---|---|---|
| mean | 1.2e-29 | 2.1e-29 | 2.6e-30 | 9.2e-30 | 1.4e-30 |
| max | 5.4e-27 | 1.3e-26 | 1.1e-27 | 3.2e-27 | 1.4e-27 |
Visualising Relative Differences
| Ā | other | noint | escatter | 1401 | 2001 |
|---|---|---|---|---|---|
| mean | 3.3e-15 | 2.1e-15 | 3.3e-16 | 4e-15 | 2e-15 |
| max | 4e-13 | 4.5e-13 | 4.1e-14 | 5.6e-13 | 1.1e-13 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter
================================================== Summary for test_calculate_plotting_data__plotter_calculate_plotting_data4__.h5: Total number of keys- in ref1: 10, in ref2: 10 Number of keys with different names in ref1 and ref2: 0 Number of keys with same name but different data in ref1 and ref2: 4 Number of totally same keys: 6 ==================================================
Significant difference detected in test_calculate_plotting_data__plotter_calculate_plotting_data11__.h5, key=/plot_data_hdf/absorption_luminosities_df Maximum relative difference: 1.20e-14 (Versions differ by 1.20e-12%)
Displaying heatmap for key /plot_data_hdf/absorption_luminosities_df in file test_calculate_plotting_data__plotter_calculate_plotting_data11__.h5 Visualising Absolute Differences
| Ā | other | 1401 | 2001 |
|---|---|---|---|
| mean | 3.9e+22 | 2.4e+19 | 9.7e+18 |
| max | 5.9e+25 | 1.9e+22 | 1.9e+22 |
Visualising Relative Differences
| Ā | other | 1401 | 2001 |
|---|---|---|---|
| mean | 1.3e-16 | 4.3e-18 | 8.6e-18 |
| max | 1.2e-14 | 2.2e-16 | 3.8e-16 |
Significant difference detected in test_calculate_plotting_data__plotter_calculate_plotting_data11__.h5, key=/plot_data_hdf/total_luminosities_df Maximum relative difference: 1.20e-14 (Versions differ by 1.20e-12%)
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter Displaying heatmap for key /plot_data_hdf/total_luminosities_df in file test_calculate_plotting_data__plotter_calculate_plotting_data11__.h5 Visualising Absolute Differences
| Ā | other | 1401 | 2001 |
|---|---|---|---|
| mean | 4.4e+22 | 1.9e+19 | 9.7e+18 |
| max | 5.9e+25 | 1.9e+22 | 1.9e+22 |
Visualising Relative Differences
| Ā | other | 1401 | 2001 |
|---|---|---|---|
| mean | 9.4e-17 | 1.2e-18 | 7e-18 |
| max | 1.2e-14 | 1.2e-16 | 3.8e-16 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter
Displaying heatmap for key /plot_data_hdf/emission_luminosities_df in file test_calculate_plotting_data__plotter_calculate_plotting_data11__.h5 Visualising Absolute Differences
| Ā | other | noint | escatter | 1401 | 2001 |
|---|---|---|---|---|---|
| mean | 4.6e+21 | 0 | 0 | 0 | 0 |
| max | 2.7e+24 | 0 | 0 | 0 | 0 |
Visualising Relative Differences
| Ā | other | noint | escatter | 1401 | 2001 |
|---|---|---|---|---|---|
| mean | 5.5e-17 | 0 | 0 | 0 | 0 |
| max | 3.3e-15 | 0 | 0 | 0 | 0 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter ================================================== Summary for test_calculate_plotting_data__plotter_calculate_plotting_data11__.h5: Total number of keys- in ref1: 10, in ref2: 10 Number of keys with different names in ref1 and ref2: 0 Number of keys with same name but different data in ref1 and ref2: 3 Number of totally same keys: 7 ==================================================
Displaying heatmap for key /plot_data_hdf/_7y in file test_generate_plot_mpl__plotter_generate_plot_ply11__.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 9.4e+21 |
| max | 1.9e+22 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 1.9e-16 |
| max | 3.8e-16 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter Displaying heatmap for key /plot_data_hdf/_8y in file test_generate_plot_mpl__plotter_generate_plot_ply11__.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 6.1e+23 |
| max | 1.2e+24 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 3.3e-16 |
| max | 6.5e-16 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter
Displaying heatmap for key /plot_data_hdf/_6y in file test_generate_plot_mpl__plotter_generate_plot_ply11__.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 9.5e+21 |
| max | 1.9e+22 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 1.1e-16 |
| max | 2.2e-16 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter
Significant difference detected in test_generate_plot_mpl__plotter_generate_plot_ply11__.h5, key=/plot_data_hdf/_5y Maximum relative difference: 1.20e-14 (Versions differ by 1.20e-12%)
Displaying heatmap for key /plot_data_hdf/_5y in file test_generate_plot_mpl__plotter_generate_plot_ply11__.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 2.9e+25 |
| max | 5.9e+25 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 6.1e-15 |
| max | 1.2e-14 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter
Displaying heatmap for key /plot_data_hdf/_2y in file test_generate_plot_mpl__plotter_generate_plot_ply11__.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 1.4e+24 |
| max | 2.7e+24 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 1.7e-15 |
| max | 3.3e-15 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter ================================================== Summary for test_generate_plot_mpl__plotter_generate_plot_ply11__.h5: Total number of keys- in ref1: 23, in ref2: 23 Number of keys with different names in ref1 and ref2: 0 Number of keys with same name but different data in ref1 and ref2: 5 Number of totally same keys: 18 ==================================================
Displaying heatmap for key /plot_data_hdf/_7y in file test_generate_plot_mpl__plotter_generate_plot_ply2__.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 7.9e-31 |
| max | 1.6e-30 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 2e-16 |
| max | 3.8e-16 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter
Significant difference detected in test_generate_plot_mpl__plotter_generate_plot_ply2__.h5, key=/plot_data_hdf/_3y Maximum relative difference: 2.22e-14 (Versions differ by 2.22e-12%)
Displaying heatmap for key /plot_data_hdf/_3y in file test_generate_plot_mpl__plotter_generate_plot_ply2__.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 1.5e-27 |
| max | 3e-27 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 1.1e-14 |
| max | 2.2e-14 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter Displaying heatmap for key /plot_data_hdf/_10y in file test_generate_plot_mpl__plotter_generate_plot_ply2__.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 5.1e-29 |
| max | 1e-28 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 3.3e-16 |
| max | 6.5e-16 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter
Significant difference detected in test_generate_plot_mpl__plotter_generate_plot_ply2__.h5, key=/plot_data_hdf/_6y Maximum relative difference: 2.23e-14 (Versions differ by 2.23e-12%)
Displaying heatmap for key /plot_data_hdf/_6y in file test_generate_plot_mpl__plotter_generate_plot_ply2__.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 1.6e-27 |
| max | 3.1e-27 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 1.1e-14 |
| max | 2.2e-14 |
Significant difference detected in test_generate_plot_mpl__plotter_generate_plot_ply2__.h5, key=/plot_data_hdf/_5y Maximum relative difference: 2.09e-14 (Versions differ by 2.09e-12%)
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter Displaying heatmap for key /plot_data_hdf/_5y in file test_generate_plot_mpl__plotter_generate_plot_ply2__.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 2.8e-28 |
| max | 5.7e-28 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 1.1e-14 |
| max | 2.1e-14 |
Significant difference detected in test_generate_plot_mpl__plotter_generate_plot_ply2__.h5, key=/plot_data_hdf/_2y Maximum relative difference: 2.18e-14 (Versions differ by 2.18e-12%)
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter Displaying heatmap for key /plot_data_hdf/_2y in file test_generate_plot_mpl__plotter_generate_plot_ply2__.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 1.1e-27 |
| max | 2.2e-27 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 1.1e-14 |
| max | 2.2e-14 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter ================================================== Summary for test_generate_plot_mpl__plotter_generate_plot_ply2__.h5: Total number of keys- in ref1: 27, in ref2: 27 Number of keys with different names in ref1 and ref2: 0 Number of keys with same name but different data in ref1 and ref2: 6 Number of totally same keys: 21 ==================================================
Significant difference detected in test_calculate_plotting_data__plotter_calculate_plotting_data8__.h5, key=/plot_data_hdf/absorption_luminosities_df Maximum relative difference: 1.20e-14 (Versions differ by 1.20e-12%)
Displaying heatmap for key /plot_data_hdf/absorption_luminosities_df in file test_calculate_plotting_data__plotter_calculate_plotting_data8__.h5 Visualising Absolute Differences
| Ā | other | 1401 | 2001 |
|---|---|---|---|
| mean | 3.9e+22 | 2.4e+19 | 9.7e+18 |
| max | 5.9e+25 | 1.9e+22 | 1.9e+22 |
Visualising Relative Differences
| Ā | other | 1401 | 2001 |
|---|---|---|---|
| mean | 1.3e-16 | 4.3e-18 | 8.6e-18 |
| max | 1.2e-14 | 2.2e-16 | 3.8e-16 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter
Significant difference detected in test_calculate_plotting_data__plotter_calculate_plotting_data8__.h5, key=/plot_data_hdf/total_luminosities_df Maximum relative difference: 1.20e-14 (Versions differ by 1.20e-12%)
Displaying heatmap for key /plot_data_hdf/total_luminosities_df in file test_calculate_plotting_data__plotter_calculate_plotting_data8__.h5 Visualising Absolute Differences
| Ā | other | 1401 | 2001 |
|---|---|---|---|
| mean | 4.4e+22 | 1.9e+19 | 9.7e+18 |
| max | 5.9e+25 | 1.9e+22 | 1.9e+22 |
Visualising Relative Differences
| Ā | other | 1401 | 2001 |
|---|---|---|---|
| mean | 9.4e-17 | 1.2e-18 | 7e-18 |
| max | 1.2e-14 | 1.2e-16 | 3.8e-16 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter
Displaying heatmap for key /plot_data_hdf/emission_luminosities_df in file test_calculate_plotting_data__plotter_calculate_plotting_data8__.h5 Visualising Absolute Differences
| Ā | other | noint | escatter | 1401 | 2001 |
|---|---|---|---|---|---|
| mean | 4.6e+21 | 0 | 0 | 0 | 0 |
| max | 2.7e+24 | 0 | 0 | 0 | 0 |
Visualising Relative Differences
| Ā | other | noint | escatter | 1401 | 2001 |
|---|---|---|---|---|---|
| mean | 5.5e-17 | 0 | 0 | 0 | 0 |
| max | 3.3e-15 | 0 | 0 | 0 | 0 |
Significant difference detected in test_calculate_plotting_data__plotter_calculate_plotting_data9__.h5, key=/plot_data_hdf/absorption_luminosities_df Maximum relative difference: 1.20e-14 (Versions differ by 1.20e-12%)
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter ================================================== Summary for test_calculate_plotting_data__plotter_calculate_plotting_data8__.h5: Total number of keys- in ref1: 10, in ref2: 10 Number of keys with different names in ref1 and ref2: 0 Number of keys with same name but different data in ref1 and ref2: 3 Number of totally same keys: 7 ================================================== Displaying heatmap for key /plot_data_hdf/absorption_luminosities_df in file test_calculate_plotting_data__plotter_calculate_plotting_data9__.h5 Visualising Absolute Differences
| Ā | other | 1401 | 2001 |
|---|---|---|---|
| mean | 3.9e+22 | 2.4e+19 | 9.7e+18 |
| max | 5.9e+25 | 1.9e+22 | 1.9e+22 |
Visualising Relative Differences
| Ā | other | 1401 | 2001 |
|---|---|---|---|
| mean | 1.3e-16 | 4.3e-18 | 8.6e-18 |
| max | 1.2e-14 | 2.2e-16 | 3.8e-16 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter
Significant difference detected in test_calculate_plotting_data__plotter_calculate_plotting_data9__.h5, key=/plot_data_hdf/total_luminosities_df Maximum relative difference: 1.20e-14 (Versions differ by 1.20e-12%)
Displaying heatmap for key /plot_data_hdf/total_luminosities_df in file test_calculate_plotting_data__plotter_calculate_plotting_data9__.h5 Visualising Absolute Differences
| Ā | other | 1401 | 2001 |
|---|---|---|---|
| mean | 4.4e+22 | 1.9e+19 | 9.7e+18 |
| max | 5.9e+25 | 1.9e+22 | 1.9e+22 |
Visualising Relative Differences
| Ā | other | 1401 | 2001 |
|---|---|---|---|
| mean | 9.4e-17 | 1.2e-18 | 7e-18 |
| max | 1.2e-14 | 1.2e-16 | 3.8e-16 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter
Displaying heatmap for key /plot_data_hdf/emission_luminosities_df in file test_calculate_plotting_data__plotter_calculate_plotting_data9__.h5 Visualising Absolute Differences
| Ā | other | noint | escatter | 1401 | 2001 |
|---|---|---|---|---|---|
| mean | 4.6e+21 | 0 | 0 | 0 | 0 |
| max | 2.7e+24 | 0 | 0 | 0 | 0 |
Visualising Relative Differences
| Ā | other | noint | escatter | 1401 | 2001 |
|---|---|---|---|---|---|
| mean | 5.5e-17 | 0 | 0 | 0 | 0 |
| max | 3.3e-15 | 0 | 0 | 0 | 0 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter ================================================== Summary for test_calculate_plotting_data__plotter_calculate_plotting_data9__.h5: Total number of keys- in ref1: 10, in ref2: 10 Number of keys with different names in ref1 and ref2: 0 Number of keys with same name but different data in ref1 and ref2: 3 Number of totally same keys: 7 ==================================================
Displaying heatmap for key /plot_data_hdf/_7y in file test_generate_plot_mpl__plotter_generate_plot_ply3__.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 7.9e-31 |
| max | 1.6e-30 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 2e-16 |
| max | 3.8e-16 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter
Displaying heatmap for key /plot_data_hdf/_9y in file test_generate_plot_mpl__plotter_generate_plot_ply3__.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 5.1e-29 |
| max | 1e-28 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 3.3e-16 |
| max | 6.5e-16 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter
Significant difference detected in test_generate_plot_mpl__plotter_generate_plot_ply3__.h5, key=/plot_data_hdf/_3y Maximum relative difference: 2.22e-14 (Versions differ by 2.22e-12%)
Displaying heatmap for key /plot_data_hdf/_3y in file test_generate_plot_mpl__plotter_generate_plot_ply3__.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 1.5e-27 |
| max | 3e-27 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 1.1e-14 |
| max | 2.2e-14 |
Significant difference detected in test_generate_plot_mpl__plotter_generate_plot_ply3__.h5, key=/plot_data_hdf/_6y Maximum relative difference: 2.23e-14 (Versions differ by 2.23e-12%)
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter Displaying heatmap for key /plot_data_hdf/_6y in file test_generate_plot_mpl__plotter_generate_plot_ply3__.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 1.6e-27 |
| max | 3.1e-27 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 1.1e-14 |
| max | 2.2e-14 |
Significant difference detected in test_generate_plot_mpl__plotter_generate_plot_ply3__.h5, key=/plot_data_hdf/_5y Maximum relative difference: 2.09e-14 (Versions differ by 2.09e-12%)
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter Displaying heatmap for key /plot_data_hdf/_5y in file test_generate_plot_mpl__plotter_generate_plot_ply3__.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 2.8e-28 |
| max | 5.7e-28 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 1.1e-14 |
| max | 2.1e-14 |
Significant difference detected in test_generate_plot_mpl__plotter_generate_plot_ply3__.h5, key=/plot_data_hdf/_2y Maximum relative difference: 2.18e-14 (Versions differ by 2.18e-12%)
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter Displaying heatmap for key /plot_data_hdf/_2y in file test_generate_plot_mpl__plotter_generate_plot_ply3__.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 1.1e-27 |
| max | 2.2e-27 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 1.1e-14 |
| max | 2.2e-14 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter ================================================== Summary for test_generate_plot_mpl__plotter_generate_plot_ply3__.h5: Total number of keys- in ref1: 25, in ref2: 25 Number of keys with different names in ref1 and ref2: 0 Number of keys with same name but different data in ref1 and ref2: 6 Number of totally same keys: 19 ==================================================
Displaying heatmap for key /plot_data_hdf/_7y in file test_generate_plot_mpl__plotter_generate_plot_ply10__.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 9.4e+21 |
| max | 1.9e+22 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 1.9e-16 |
| max | 3.8e-16 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter
Displaying heatmap for key /plot_data_hdf/_9y in file test_generate_plot_mpl__plotter_generate_plot_ply10__.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 6.1e+23 |
| max | 1.2e+24 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 3.3e-16 |
| max | 6.5e-16 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter
Displaying heatmap for key /plot_data_hdf/_6y in file test_generate_plot_mpl__plotter_generate_plot_ply10__.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 9.5e+21 |
| max | 1.9e+22 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 1.1e-16 |
| max | 2.2e-16 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter
Significant difference detected in test_generate_plot_mpl__plotter_generate_plot_ply10__.h5, key=/plot_data_hdf/_5y Maximum relative difference: 1.20e-14 (Versions differ by 1.20e-12%)
Displaying heatmap for key /plot_data_hdf/_5y in file test_generate_plot_mpl__plotter_generate_plot_ply10__.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 2.9e+25 |
| max | 5.9e+25 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 6.1e-15 |
| max | 1.2e-14 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter
Displaying heatmap for key /plot_data_hdf/_2y in file test_generate_plot_mpl__plotter_generate_plot_ply10__.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 1.4e+24 |
| max | 2.7e+24 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 1.7e-15 |
| max | 3.3e-15 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter ================================================== Summary for test_generate_plot_mpl__plotter_generate_plot_ply10__.h5: Total number of keys- in ref1: 25, in ref2: 25 Number of keys with different names in ref1 and ref2: 0 Number of keys with same name but different data in ref1 and ref2: 5 Number of totally same keys: 20 ==================================================
Significant difference detected in test_calculate_plotting_data__plotter_calculate_plotting_data10__.h5, key=/plot_data_hdf/absorption_luminosities_df Maximum relative difference: 1.20e-14 (Versions differ by 1.20e-12%)
Displaying heatmap for key /plot_data_hdf/absorption_luminosities_df in file test_calculate_plotting_data__plotter_calculate_plotting_data10__.h5 Visualising Absolute Differences
| Ā | other | 1401 | 2001 |
|---|---|---|---|
| mean | 3.9e+22 | 2.4e+19 | 9.7e+18 |
| max | 5.9e+25 | 1.9e+22 | 1.9e+22 |
Visualising Relative Differences
| Ā | other | 1401 | 2001 |
|---|---|---|---|
| mean | 1.3e-16 | 4.3e-18 | 8.6e-18 |
| max | 1.2e-14 | 2.2e-16 | 3.8e-16 |
Significant difference detected in test_calculate_plotting_data__plotter_calculate_plotting_data10__.h5, key=/plot_data_hdf/total_luminosities_df Maximum relative difference: 1.20e-14 (Versions differ by 1.20e-12%)
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter Displaying heatmap for key /plot_data_hdf/total_luminosities_df in file test_calculate_plotting_data__plotter_calculate_plotting_data10__.h5 Visualising Absolute Differences
| Ā | other | 1401 | 2001 |
|---|---|---|---|
| mean | 4.4e+22 | 1.9e+19 | 9.7e+18 |
| max | 5.9e+25 | 1.9e+22 | 1.9e+22 |
Visualising Relative Differences
| Ā | other | 1401 | 2001 |
|---|---|---|---|
| mean | 9.4e-17 | 1.2e-18 | 7e-18 |
| max | 1.2e-14 | 1.2e-16 | 3.8e-16 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter
Displaying heatmap for key /plot_data_hdf/emission_luminosities_df in file test_calculate_plotting_data__plotter_calculate_plotting_data10__.h5 Visualising Absolute Differences
| Ā | other | noint | escatter | 1401 | 2001 |
|---|---|---|---|---|---|
| mean | 4.6e+21 | 0 | 0 | 0 | 0 |
| max | 2.7e+24 | 0 | 0 | 0 | 0 |
Visualising Relative Differences
| Ā | other | noint | escatter | 1401 | 2001 |
|---|---|---|---|---|---|
| mean | 5.5e-17 | 0 | 0 | 0 | 0 |
| max | 3.3e-15 | 0 | 0 | 0 | 0 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter ================================================== Summary for test_calculate_plotting_data__plotter_calculate_plotting_data10__.h5: Total number of keys- in ref1: 10, in ref2: 10 Number of keys with different names in ref1 and ref2: 0 Number of keys with same name but different data in ref1 and ref2: 3 Number of totally same keys: 7 ==================================================
Significant difference detected in test_calculate_plotting_data__plotter_calculate_plotting_data5__.h5, key=/plot_data_hdf/absorption_luminosities_df Maximum relative difference: 5.41e-13 (Versions differ by 5.41e-11%)
Displaying heatmap for key /plot_data_hdf/absorption_luminosities_df in file test_calculate_plotting_data__plotter_calculate_plotting_data5__.h5 Visualising Absolute Differences
| Ā | other | 1401 | 2001 |
|---|---|---|---|
| mean | 1.6e-29 | 1.1e-29 | 1.7e-30 |
| max | 4.7e-27 | 2.7e-27 | 1.4e-27 |
Visualising Relative Differences
| Ā | other | 1401 | 2001 |
|---|---|---|---|
| mean | 1.9e-15 | 4.2e-15 | 1.9e-15 |
| max | 1.6e-13 | 5.4e-13 | 6.7e-14 |
Significant difference detected in test_calculate_plotting_data__plotter_calculate_plotting_data5__.h5, key=/plot_data_hdf/modeled_spectrum_luminosity Maximum relative difference: 8.08e-14 (Versions differ by 8.08e-12%)
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter Displaying heatmap for key /plot_data_hdf/modeled_spectrum_luminosity in file test_calculate_plotting_data__plotter_calculate_plotting_data5__.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 7.1e-20 |
| max | 1.4e-19 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 4.1e-14 |
| max | 8.1e-14 |
Significant difference detected in test_calculate_plotting_data__plotter_calculate_plotting_data5__.h5, key=/plot_data_hdf/total_luminosities_df Maximum relative difference: 5.41e-13 (Versions differ by 5.41e-11%)
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter Displaying heatmap for key /plot_data_hdf/total_luminosities_df in file test_calculate_plotting_data__plotter_calculate_plotting_data5__.h5 Visualising Absolute Differences
| Ā | other | 1401 | 2001 |
|---|---|---|---|
| mean | 2.7e-29 | 2e-29 | 3.1e-30 |
| max | 5.5e-27 | 3.2e-27 | 1.4e-27 |
Visualising Relative Differences
| Ā | other | 1401 | 2001 |
|---|---|---|---|
| mean | 1.7e-15 | 3.6e-15 | 2.2e-15 |
| max | 1.5e-13 | 5.4e-13 | 1.1e-13 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter
Significant difference detected in test_calculate_plotting_data__plotter_calculate_plotting_data5__.h5, key=/plot_data_hdf/emission_luminosities_df Maximum relative difference: 5.64e-13 (Versions differ by 5.64e-11%)
Displaying heatmap for key /plot_data_hdf/emission_luminosities_df in file test_calculate_plotting_data__plotter_calculate_plotting_data5__.h5 Visualising Absolute Differences
| Ā | other | noint | escatter | 1401 | 2001 |
|---|---|---|---|---|---|
| mean | 1.2e-29 | 2.1e-29 | 2.6e-30 | 9.2e-30 | 1.4e-30 |
| max | 5.4e-27 | 1.3e-26 | 1.1e-27 | 3.2e-27 | 1.4e-27 |
Visualising Relative Differences
| Ā | other | noint | escatter | 1401 | 2001 |
|---|---|---|---|---|---|
| mean | 3.3e-15 | 2.1e-15 | 3.3e-16 | 4e-15 | 2e-15 |
| max | 4e-13 | 4.5e-13 | 4.1e-14 | 5.6e-13 | 1.1e-13 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter ================================================== Summary for test_calculate_plotting_data__plotter_calculate_plotting_data5__.h5: Total number of keys- in ref1: 10, in ref2: 10 Number of keys with different names in ref1 and ref2: 0 Number of keys with same name but different data in ref1 and ref2: 4 Number of totally same keys: 6 ================================================== Displaying heatmap for key /plot_data_hdf/_7y in file test_generate_plot_mpl__plotter_generate_plot_ply0__.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 7.9e-31 |
| max | 1.6e-30 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 2e-16 |
| max | 3.8e-16 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter
Significant difference detected in test_generate_plot_mpl__plotter_generate_plot_ply0__.h5, key=/plot_data_hdf/_3y Maximum relative difference: 2.22e-14 (Versions differ by 2.22e-12%)
Displaying heatmap for key /plot_data_hdf/_3y in file test_generate_plot_mpl__plotter_generate_plot_ply0__.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 1.5e-27 |
| max | 3e-27 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 1.1e-14 |
| max | 2.2e-14 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter Displaying heatmap for key /plot_data_hdf/_10y in file test_generate_plot_mpl__plotter_generate_plot_ply0__.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 5.1e-29 |
| max | 1e-28 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 3.3e-16 |
| max | 6.5e-16 |
Significant difference detected in test_generate_plot_mpl__plotter_generate_plot_ply0__.h5, key=/plot_data_hdf/_6y Maximum relative difference: 2.23e-14 (Versions differ by 2.23e-12%)
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter Displaying heatmap for key /plot_data_hdf/_6y in file test_generate_plot_mpl__plotter_generate_plot_ply0__.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 1.6e-27 |
| max | 3.1e-27 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 1.1e-14 |
| max | 2.2e-14 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter
Significant difference detected in test_generate_plot_mpl__plotter_generate_plot_ply0__.h5, key=/plot_data_hdf/_5y Maximum relative difference: 2.09e-14 (Versions differ by 2.09e-12%)
Displaying heatmap for key /plot_data_hdf/_5y in file test_generate_plot_mpl__plotter_generate_plot_ply0__.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 2.8e-28 |
| max | 5.7e-28 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 1.1e-14 |
| max | 2.1e-14 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter
Significant difference detected in test_generate_plot_mpl__plotter_generate_plot_ply0__.h5, key=/plot_data_hdf/_2y Maximum relative difference: 2.18e-14 (Versions differ by 2.18e-12%)
Displaying heatmap for key /plot_data_hdf/_2y in file test_generate_plot_mpl__plotter_generate_plot_ply0__.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 1.1e-27 |
| max | 2.2e-27 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 1.1e-14 |
| max | 2.2e-14 |
Significant difference detected in test_generate_plot_mpl__plotter_generate_plot_ply13__.h5, key=/plot_data_hdf/_7y Maximum relative difference: 9.96e-14 (Versions differ by 9.96e-12%)
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter ================================================== Summary for test_generate_plot_mpl__plotter_generate_plot_ply0__.h5: Total number of keys- in ref1: 27, in ref2: 27 Number of keys with different names in ref1 and ref2: 0 Number of keys with same name but different data in ref1 and ref2: 6 Number of totally same keys: 21 ================================================== Displaying heatmap for key /plot_data_hdf/_7y in file test_generate_plot_mpl__plotter_generate_plot_ply13__.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 6.2e+24 |
| max | 1.2e+25 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 5.1e-14 |
| max | 1e-13 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter
Displaying heatmap for key /plot_data_hdf/_8y in file test_generate_plot_mpl__plotter_generate_plot_ply13__.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 6.1e+23 |
| max | 1.2e+24 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 3.3e-16 |
| max | 6.5e-16 |
Significant difference detected in test_generate_plot_mpl__plotter_generate_plot_ply13__.h5, key=/plot_data_hdf/_4y Maximum relative difference: 9.96e-14 (Versions differ by 9.96e-12%)
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter Displaying heatmap for key /plot_data_hdf/_4y in file test_generate_plot_mpl__plotter_generate_plot_ply13__.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 6.4e+24 |
| max | 1.3e+25 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 5.1e-14 |
| max | 1e-13 |
Significant difference detected in test_generate_plot_mpl__plotter_generate_plot_ply13__.h5, key=/plot_data_hdf/_0y Maximum relative difference: 6.21e-14 (Versions differ by 6.21e-12%)
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter Displaying heatmap for key /plot_data_hdf/_0y in file test_generate_plot_mpl__plotter_generate_plot_ply13__.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 3.3e+24 |
| max | 6.7e+24 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 3.1e-14 |
| max | 6.2e-14 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter
Significant difference detected in test_generate_plot_mpl__plotter_generate_plot_ply13__.h5, key=/plot_data_hdf/_1y Maximum relative difference: 2.33e-14 (Versions differ by 2.33e-12%)
Displaying heatmap for key /plot_data_hdf/_1y in file test_generate_plot_mpl__plotter_generate_plot_ply13__.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 6.8e+24 |
| max | 1.4e+25 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 1.2e-14 |
| max | 2.3e-14 |
Significant difference detected in test_generate_plot_mpl__plotter_generate_plot_ply13__.h5, key=/plot_data_hdf/_3y Maximum relative difference: 2.49e-13 (Versions differ by 2.49e-11%)
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter Displaying heatmap for key /plot_data_hdf/_3y in file test_generate_plot_mpl__plotter_generate_plot_ply13__.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 2.7e+25 |
| max | 5.4e+25 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 1.3e-13 |
| max | 2.5e-13 |
Significant difference detected in test_generate_plot_mpl__plotter_generate_plot_ply13__.h5, key=/plot_data_hdf/_6y Maximum relative difference: 2.49e-13 (Versions differ by 2.49e-11%)
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter Displaying heatmap for key /plot_data_hdf/_6y in file test_generate_plot_mpl__plotter_generate_plot_ply13__.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 2.9e+25 |
| max | 5.7e+25 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 1.3e-13 |
| max | 2.5e-13 |
Significant difference detected in test_generate_plot_mpl__plotter_generate_plot_ply13__.h5, key=/plot_data_hdf/_5y Maximum relative difference: 6.35e-13 (Versions differ by 6.35e-11%)
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter Displaying heatmap for key /plot_data_hdf/_5y in file test_generate_plot_mpl__plotter_generate_plot_ply13__.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 2.8e+25 |
| max | 5.6e+25 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 3.2e-13 |
| max | 6.4e-13 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter
Significant difference detected in test_generate_plot_mpl__plotter_generate_plot_ply13__.h5, key=/plot_data_hdf/_2y Maximum relative difference: 6.35e-13 (Versions differ by 6.35e-11%)
Displaying heatmap for key /plot_data_hdf/_2y in file test_generate_plot_mpl__plotter_generate_plot_ply13__.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 3e+25 |
| max | 5.9e+25 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 3.2e-13 |
| max | 6.4e-13 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter
================================================== Summary for test_generate_plot_mpl__plotter_generate_plot_ply13__.h5: Total number of keys- in ref1: 23, in ref2: 23 Number of keys with different names in ref1 and ref2: 0 Number of keys with same name but different data in ref1 and ref2: 9 Number of totally same keys: 14 ==================================================
Significant difference detected in test_calculate_plotting_data__plotter_calculate_plotting_data13__.h5, key=/plot_data_hdf/absorption_luminosities_df Maximum relative difference: 6.35e-13 (Versions differ by 6.35e-11%)
Displaying heatmap for key /plot_data_hdf/absorption_luminosities_df in file test_calculate_plotting_data__plotter_calculate_plotting_data13__.h5 Visualising Absolute Differences
| Ā | other | 1401 | 2001 |
|---|---|---|---|
| mean | 2.7e+23 | 1.4e+23 | 1.5e+22 |
| max | 5.6e+25 | 5.7e+25 | 1.2e+25 |
Visualising Relative Differences
| Ā | other | 1401 | 2001 |
|---|---|---|---|
| mean | 4.4e-15 | 2.6e-15 | 1.9e-15 |
| max | 6.4e-13 | 2.5e-13 | 1e-13 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter
Significant difference detected in test_calculate_plotting_data__plotter_calculate_plotting_data13__.h5, key=/plot_data_hdf/modeled_spectrum_luminosity Maximum relative difference: 8.07e-14 (Versions differ by 8.07e-12%)
Displaying heatmap for key /plot_data_hdf/modeled_spectrum_luminosity in file test_calculate_plotting_data__plotter_calculate_plotting_data13__.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 8.5e+32 |
| max | 1.7e+33 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 4.1e-14 |
| max | 8.1e-14 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter
Significant difference detected in test_calculate_plotting_data__plotter_calculate_plotting_data13__.h5, key=/plot_data_hdf/total_luminosities_df Maximum relative difference: 4.77e-13 (Versions differ by 4.77e-11%)
Displaying heatmap for key /plot_data_hdf/total_luminosities_df in file test_calculate_plotting_data__plotter_calculate_plotting_data13__.h5 Visualising Absolute Differences
| Ā | other | 1401 | 2001 |
|---|---|---|---|
| mean | 4.9e+23 | 2.6e+23 | 2.6e+22 |
| max | 9.9e+25 | 5.7e+25 | 1.3e+25 |
Visualising Relative Differences
| Ā | other | 1401 | 2001 |
|---|---|---|---|
| mean | 2.8e-15 | 2.7e-15 | 2.4e-15 |
| max | 4.8e-13 | 2.5e-13 | 1e-13 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter
Significant difference detected in test_calculate_plotting_data__plotter_calculate_plotting_data13__.h5, key=/plot_data_hdf/emission_luminosities_df Maximum relative difference: 6.35e-13 (Versions differ by 6.35e-11%)
Displaying heatmap for key /plot_data_hdf/emission_luminosities_df in file test_calculate_plotting_data__plotter_calculate_plotting_data13__.h5 Visualising Absolute Differences
| Ā | other | noint | escatter | 1401 | 2001 |
|---|---|---|---|---|---|
| mean | 2.4e+23 | 1.5e+22 | 1.5e+22 | 1.3e+23 | 1.4e+22 |
| max | 5.9e+25 | 6.7e+24 | 1.4e+25 | 5.4e+25 | 1.3e+25 |
Visualising Relative Differences
| Ā | other | noint | escatter | 1401 | 2001 |
|---|---|---|---|---|---|
| mean | 4.9e-15 | 2e-16 | 1.3e-16 | 2.1e-15 | 1.7e-15 |
| max | 6.4e-13 | 6.2e-14 | 2.3e-14 | 2.5e-13 | 1e-13 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter ================================================== Summary for test_calculate_plotting_data__plotter_calculate_plotting_data13__.h5: Total number of keys- in ref1: 10, in ref2: 10 Number of keys with different names in ref1 and ref2: 0 Number of keys with same name but different data in ref1 and ref2: 4 Number of totally same keys: 6 ==================================================
Significant difference detected in test_calculate_plotting_data__plotter_calculate_plotting_data6__.h5, key=/plot_data_hdf/absorption_luminosities_df Maximum relative difference: 5.41e-13 (Versions differ by 5.41e-11%)
Displaying heatmap for key /plot_data_hdf/absorption_luminosities_df in file test_calculate_plotting_data__plotter_calculate_plotting_data6__.h5 Visualising Absolute Differences
| Ā | other | 1401 | 2001 |
|---|---|---|---|
| mean | 1.6e-29 | 1.1e-29 | 1.7e-30 |
| max | 4.7e-27 | 2.7e-27 | 1.4e-27 |
Visualising Relative Differences
| Ā | other | 1401 | 2001 |
|---|---|---|---|
| mean | 1.9e-15 | 4.2e-15 | 1.9e-15 |
| max | 1.6e-13 | 5.4e-13 | 6.7e-14 |
Significant difference detected in test_calculate_plotting_data__plotter_calculate_plotting_data6__.h5, key=/plot_data_hdf/modeled_spectrum_luminosity Maximum relative difference: 8.08e-14 (Versions differ by 8.08e-12%)
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter
Displaying heatmap for key /plot_data_hdf/modeled_spectrum_luminosity in file test_calculate_plotting_data__plotter_calculate_plotting_data6__.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 7.1e-20 |
| max | 1.4e-19 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 4.1e-14 |
| max | 8.1e-14 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter
Significant difference detected in test_calculate_plotting_data__plotter_calculate_plotting_data6__.h5, key=/plot_data_hdf/total_luminosities_df Maximum relative difference: 5.41e-13 (Versions differ by 5.41e-11%)
Displaying heatmap for key /plot_data_hdf/total_luminosities_df in file test_calculate_plotting_data__plotter_calculate_plotting_data6__.h5 Visualising Absolute Differences
| Ā | other | 1401 | 2001 |
|---|---|---|---|
| mean | 2.7e-29 | 2e-29 | 3.1e-30 |
| max | 5.5e-27 | 3.2e-27 | 1.4e-27 |
Visualising Relative Differences
| Ā | other | 1401 | 2001 |
|---|---|---|---|
| mean | 1.7e-15 | 3.6e-15 | 2.2e-15 |
| max | 1.5e-13 | 5.4e-13 | 1.1e-13 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter
Significant difference detected in test_calculate_plotting_data__plotter_calculate_plotting_data6__.h5, key=/plot_data_hdf/emission_luminosities_df Maximum relative difference: 5.64e-13 (Versions differ by 5.64e-11%)
Displaying heatmap for key /plot_data_hdf/emission_luminosities_df in file test_calculate_plotting_data__plotter_calculate_plotting_data6__.h5 Visualising Absolute Differences
| Ā | other | noint | escatter | 1401 | 2001 |
|---|---|---|---|---|---|
| mean | 1.2e-29 | 2.1e-29 | 2.6e-30 | 9.2e-30 | 1.4e-30 |
| max | 5.4e-27 | 1.3e-26 | 1.1e-27 | 3.2e-27 | 1.4e-27 |
Visualising Relative Differences
| Ā | other | noint | escatter | 1401 | 2001 |
|---|---|---|---|---|---|
| mean | 3.3e-15 | 2.1e-15 | 3.3e-16 | 4e-15 | 2e-15 |
| max | 4e-13 | 4.5e-13 | 4.1e-14 | 5.6e-13 | 1.1e-13 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter ================================================== Summary for test_calculate_plotting_data__plotter_calculate_plotting_data6__.h5: Total number of keys- in ref1: 10, in ref2: 10 Number of keys with different names in ref1 and ref2: 0 Number of keys with same name but different data in ref1 and ref2: 4 Number of totally same keys: 6 ==================================================
Significant difference detected in test_calculate_plotting_data__plotter_calculate_plotting_data7__.h5, key=/plot_data_hdf/absorption_luminosities_df Maximum relative difference: 5.41e-13 (Versions differ by 5.41e-11%)
Displaying heatmap for key /plot_data_hdf/absorption_luminosities_df in file test_calculate_plotting_data__plotter_calculate_plotting_data7__.h5 Visualising Absolute Differences
| Ā | other | 1401 | 2001 |
|---|---|---|---|
| mean | 1.6e-29 | 1.1e-29 | 1.7e-30 |
| max | 4.7e-27 | 2.7e-27 | 1.4e-27 |
Visualising Relative Differences
| Ā | other | 1401 | 2001 |
|---|---|---|---|
| mean | 1.9e-15 | 4.2e-15 | 1.9e-15 |
| max | 1.6e-13 | 5.4e-13 | 6.7e-14 |
Significant difference detected in test_calculate_plotting_data__plotter_calculate_plotting_data7__.h5, key=/plot_data_hdf/modeled_spectrum_luminosity Maximum relative difference: 8.08e-14 (Versions differ by 8.08e-12%)
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter Displaying heatmap for key /plot_data_hdf/modeled_spectrum_luminosity in file test_calculate_plotting_data__plotter_calculate_plotting_data7__.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 7.1e-20 |
| max | 1.4e-19 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 4.1e-14 |
| max | 8.1e-14 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter
Significant difference detected in test_calculate_plotting_data__plotter_calculate_plotting_data7__.h5, key=/plot_data_hdf/total_luminosities_df Maximum relative difference: 5.41e-13 (Versions differ by 5.41e-11%)
Displaying heatmap for key /plot_data_hdf/total_luminosities_df in file test_calculate_plotting_data__plotter_calculate_plotting_data7__.h5 Visualising Absolute Differences
| Ā | other | 1401 | 2001 |
|---|---|---|---|
| mean | 2.7e-29 | 2e-29 | 3.1e-30 |
| max | 5.5e-27 | 3.2e-27 | 1.4e-27 |
Visualising Relative Differences
| Ā | other | 1401 | 2001 |
|---|---|---|---|
| mean | 1.7e-15 | 3.6e-15 | 2.2e-15 |
| max | 1.5e-13 | 5.4e-13 | 1.1e-13 |
Significant difference detected in test_calculate_plotting_data__plotter_calculate_plotting_data7__.h5, key=/plot_data_hdf/emission_luminosities_df Maximum relative difference: 5.64e-13 (Versions differ by 5.64e-11%)
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter Displaying heatmap for key /plot_data_hdf/emission_luminosities_df in file test_calculate_plotting_data__plotter_calculate_plotting_data7__.h5 Visualising Absolute Differences
| Ā | other | noint | escatter | 1401 | 2001 |
|---|---|---|---|---|---|
| mean | 1.2e-29 | 2.1e-29 | 2.6e-30 | 9.2e-30 | 1.4e-30 |
| max | 5.4e-27 | 1.3e-26 | 1.1e-27 | 3.2e-27 | 1.4e-27 |
Visualising Relative Differences
| Ā | other | noint | escatter | 1401 | 2001 |
|---|---|---|---|---|---|
| mean | 3.3e-15 | 2.1e-15 | 3.3e-16 | 4e-15 | 2e-15 |
| max | 4e-13 | 4.5e-13 | 4.1e-14 | 5.6e-13 | 1.1e-13 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter
================================================== Summary for test_calculate_plotting_data__plotter_calculate_plotting_data7__.h5: Total number of keys- in ref1: 10, in ref2: 10 Number of keys with different names in ref1 and ref2: 0 Number of keys with same name but different data in ref1 and ref2: 4 Number of totally same keys: 6 ==================================================
Significant difference detected in test_calculate_plotting_data__plotter_calculate_plotting_data12__.h5, key=/plot_data_hdf/absorption_luminosities_df Maximum relative difference: 6.35e-13 (Versions differ by 6.35e-11%)
Displaying heatmap for key /plot_data_hdf/absorption_luminosities_df in file test_calculate_plotting_data__plotter_calculate_plotting_data12__.h5 Visualising Absolute Differences
| Ā | other | 1401 | 2001 |
|---|---|---|---|
| mean | 2.7e+23 | 1.4e+23 | 1.5e+22 |
| max | 5.6e+25 | 5.7e+25 | 1.2e+25 |
Visualising Relative Differences
| Ā | other | 1401 | 2001 |
|---|---|---|---|
| mean | 4.4e-15 | 2.6e-15 | 1.9e-15 |
| max | 6.4e-13 | 2.5e-13 | 1e-13 |
Significant difference detected in test_calculate_plotting_data__plotter_calculate_plotting_data12__.h5, key=/plot_data_hdf/modeled_spectrum_luminosity Maximum relative difference: 8.07e-14 (Versions differ by 8.07e-12%)
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter Displaying heatmap for key /plot_data_hdf/modeled_spectrum_luminosity in file test_calculate_plotting_data__plotter_calculate_plotting_data12__.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 8.5e+32 |
| max | 1.7e+33 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 4.1e-14 |
| max | 8.1e-14 |
Significant difference detected in test_calculate_plotting_data__plotter_calculate_plotting_data12__.h5, key=/plot_data_hdf/total_luminosities_df Maximum relative difference: 4.77e-13 (Versions differ by 4.77e-11%)
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter Displaying heatmap for key /plot_data_hdf/total_luminosities_df in file test_calculate_plotting_data__plotter_calculate_plotting_data12__.h5 Visualising Absolute Differences
| Ā | other | 1401 | 2001 |
|---|---|---|---|
| mean | 4.9e+23 | 2.6e+23 | 2.6e+22 |
| max | 9.9e+25 | 5.7e+25 | 1.3e+25 |
Visualising Relative Differences
| Ā | other | 1401 | 2001 |
|---|---|---|---|
| mean | 2.8e-15 | 2.7e-15 | 2.4e-15 |
| max | 4.8e-13 | 2.5e-13 | 1e-13 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter
Significant difference detected in test_calculate_plotting_data__plotter_calculate_plotting_data12__.h5, key=/plot_data_hdf/emission_luminosities_df Maximum relative difference: 6.35e-13 (Versions differ by 6.35e-11%)
Displaying heatmap for key /plot_data_hdf/emission_luminosities_df in file test_calculate_plotting_data__plotter_calculate_plotting_data12__.h5 Visualising Absolute Differences
| Ā | other | noint | escatter | 1401 | 2001 |
|---|---|---|---|---|---|
| mean | 2.4e+23 | 1.5e+22 | 1.5e+22 | 1.3e+23 | 1.4e+22 |
| max | 5.9e+25 | 6.7e+24 | 1.4e+25 | 5.4e+25 | 1.3e+25 |
Visualising Relative Differences
| Ā | other | noint | escatter | 1401 | 2001 |
|---|---|---|---|---|---|
| mean | 4.9e-15 | 2e-16 | 1.3e-16 | 2.1e-15 | 1.7e-15 |
| max | 6.4e-13 | 6.2e-14 | 2.3e-14 | 2.5e-13 | 1e-13 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter ================================================== Summary for test_calculate_plotting_data__plotter_calculate_plotting_data12__.h5: Total number of keys- in ref1: 10, in ref2: 10 Number of keys with different names in ref1 and ref2: 0 Number of keys with same name but different data in ref1 and ref2: 4 Number of totally same keys: 6 ==================================================
Significant difference detected in test_generate_plot_mpl__plotter_generate_plot_ply12__.h5, key=/plot_data_hdf/_7y Maximum relative difference: 9.96e-14 (Versions differ by 9.96e-12%)
Displaying heatmap for key /plot_data_hdf/_7y in file test_generate_plot_mpl__plotter_generate_plot_ply12__.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 6.2e+24 |
| max | 1.2e+25 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 5.1e-14 |
| max | 1e-13 |
Significant difference detected in test_generate_plot_mpl__plotter_generate_plot_ply12__.h5, key=/plot_data_hdf/_8y Maximum relative difference: 8.07e-14 (Versions differ by 8.07e-12%)
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter Displaying heatmap for key /plot_data_hdf/_8y in file test_generate_plot_mpl__plotter_generate_plot_ply12__.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 8.5e+24 |
| max | 1.7e+25 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 4.1e-14 |
| max | 8.1e-14 |
Significant difference detected in test_generate_plot_mpl__plotter_generate_plot_ply12__.h5, key=/plot_data_hdf/_4y Maximum relative difference: 9.96e-14 (Versions differ by 9.96e-12%)
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter Displaying heatmap for key /plot_data_hdf/_4y in file test_generate_plot_mpl__plotter_generate_plot_ply12__.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 6.4e+24 |
| max | 1.3e+25 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 5.1e-14 |
| max | 1e-13 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter
Significant difference detected in test_generate_plot_mpl__plotter_generate_plot_ply12__.h5, key=/plot_data_hdf/_0y Maximum relative difference: 6.21e-14 (Versions differ by 6.21e-12%)
Displaying heatmap for key /plot_data_hdf/_0y in file test_generate_plot_mpl__plotter_generate_plot_ply12__.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 3.3e+24 |
| max | 6.7e+24 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 3.1e-14 |
| max | 6.2e-14 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter
Significant difference detected in test_generate_plot_mpl__plotter_generate_plot_ply12__.h5, key=/plot_data_hdf/_1y Maximum relative difference: 2.33e-14 (Versions differ by 2.33e-12%)
Displaying heatmap for key /plot_data_hdf/_1y in file test_generate_plot_mpl__plotter_generate_plot_ply12__.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 6.8e+24 |
| max | 1.4e+25 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 1.2e-14 |
| max | 2.3e-14 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter Displaying heatmap for key /plot_data_hdf/_9y in file test_generate_plot_mpl__plotter_generate_plot_ply12__.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 6.1e+23 |
| max | 1.2e+24 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 3.3e-16 |
| max | 6.5e-16 |
Significant difference detected in test_generate_plot_mpl__plotter_generate_plot_ply12__.h5, key=/plot_data_hdf/_3y Maximum relative difference: 2.49e-13 (Versions differ by 2.49e-11%)
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter Displaying heatmap for key /plot_data_hdf/_3y in file test_generate_plot_mpl__plotter_generate_plot_ply12__.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 2.7e+25 |
| max | 5.4e+25 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 1.3e-13 |
| max | 2.5e-13 |
Significant difference detected in test_generate_plot_mpl__plotter_generate_plot_ply12__.h5, key=/plot_data_hdf/_6y Maximum relative difference: 2.49e-13 (Versions differ by 2.49e-11%)
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter Displaying heatmap for key /plot_data_hdf/_6y in file test_generate_plot_mpl__plotter_generate_plot_ply12__.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 2.9e+25 |
| max | 5.7e+25 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 1.3e-13 |
| max | 2.5e-13 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter
Significant difference detected in test_generate_plot_mpl__plotter_generate_plot_ply12__.h5, key=/plot_data_hdf/_5y Maximum relative difference: 6.35e-13 (Versions differ by 6.35e-11%)
Displaying heatmap for key /plot_data_hdf/_5y in file test_generate_plot_mpl__plotter_generate_plot_ply12__.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 2.8e+25 |
| max | 5.6e+25 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 3.2e-13 |
| max | 6.4e-13 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter
Significant difference detected in test_generate_plot_mpl__plotter_generate_plot_ply12__.h5, key=/plot_data_hdf/_2y Maximum relative difference: 6.35e-13 (Versions differ by 6.35e-11%)
Displaying heatmap for key /plot_data_hdf/_2y in file test_generate_plot_mpl__plotter_generate_plot_ply12__.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 3e+25 |
| max | 5.9e+25 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 3.2e-13 |
| max | 6.4e-13 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter ================================================== Summary for test_generate_plot_mpl__plotter_generate_plot_ply12__.h5: Total number of keys- in ref1: 25, in ref2: 25 Number of keys with different names in ref1 and ref2: 0 Number of keys with same name but different data in ref1 and ref2: 10 Number of totally same keys: 15 ==================================================
Displaying heatmap for key /plot_data_hdf/_7y in file test_generate_plot_mpl__plotter_generate_plot_ply1__.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 7.9e-31 |
| max | 1.6e-30 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 2e-16 |
| max | 3.8e-16 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter
Displaying heatmap for key /plot_data_hdf/_9y in file test_generate_plot_mpl__plotter_generate_plot_ply1__.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 5.1e-29 |
| max | 1e-28 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 3.3e-16 |
| max | 6.5e-16 |
Significant difference detected in test_generate_plot_mpl__plotter_generate_plot_ply1__.h5, key=/plot_data_hdf/_3y Maximum relative difference: 2.22e-14 (Versions differ by 2.22e-12%)
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter Displaying heatmap for key /plot_data_hdf/_3y in file test_generate_plot_mpl__plotter_generate_plot_ply1__.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 1.5e-27 |
| max | 3e-27 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 1.1e-14 |
| max | 2.2e-14 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter
Significant difference detected in test_generate_plot_mpl__plotter_generate_plot_ply1__.h5, key=/plot_data_hdf/_6y Maximum relative difference: 2.23e-14 (Versions differ by 2.23e-12%)
Displaying heatmap for key /plot_data_hdf/_6y in file test_generate_plot_mpl__plotter_generate_plot_ply1__.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 1.6e-27 |
| max | 3.1e-27 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 1.1e-14 |
| max | 2.2e-14 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter
Significant difference detected in test_generate_plot_mpl__plotter_generate_plot_ply1__.h5, key=/plot_data_hdf/_5y Maximum relative difference: 2.09e-14 (Versions differ by 2.09e-12%)
Displaying heatmap for key /plot_data_hdf/_5y in file test_generate_plot_mpl__plotter_generate_plot_ply1__.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 2.8e-28 |
| max | 5.7e-28 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 1.1e-14 |
| max | 2.1e-14 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter
Significant difference detected in test_generate_plot_mpl__plotter_generate_plot_ply1__.h5, key=/plot_data_hdf/_2y Maximum relative difference: 2.18e-14 (Versions differ by 2.18e-12%)
Displaying heatmap for key /plot_data_hdf/_2y in file test_generate_plot_mpl__plotter_generate_plot_ply1__.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 1.1e-27 |
| max | 2.2e-27 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 1.1e-14 |
| max | 2.2e-14 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter
================================================== Summary for test_generate_plot_mpl__plotter_generate_plot_ply1__.h5: Total number of keys- in ref1: 25, in ref2: 25 Number of keys with different names in ref1 and ref2: 0 Number of keys with same name but different data in ref1 and ref2: 6 Number of totally same keys: 19 ==================================================
Significant difference detected in test_generate_plot_mpl__plotter_generate_plot_ply6__.h5, key=/plot_data_hdf/_7y Maximum relative difference: 6.72e-14 (Versions differ by 6.72e-12%)
Displaying heatmap for key /plot_data_hdf/_7y in file test_generate_plot_mpl__plotter_generate_plot_ply6__.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 7e-28 |
| max | 1.4e-27 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 3.5e-14 |
| max | 6.7e-14 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter
Significant difference detected in test_generate_plot_mpl__plotter_generate_plot_ply6__.h5, key=/plot_data_hdf/_8y Maximum relative difference: 8.08e-14 (Versions differ by 8.08e-12%)
Displaying heatmap for key /plot_data_hdf/_8y in file test_generate_plot_mpl__plotter_generate_plot_ply6__.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 7.1e-28 |
| max | 1.4e-27 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 4.1e-14 |
| max | 8.1e-14 |
Significant difference detected in test_generate_plot_mpl__plotter_generate_plot_ply6__.h5, key=/plot_data_hdf/_4y Maximum relative difference: 1.08e-13 (Versions differ by 1.08e-11%)
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter Displaying heatmap for key /plot_data_hdf/_4y in file test_generate_plot_mpl__plotter_generate_plot_ply6__.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 7.2e-28 |
| max | 1.4e-27 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 5.5e-14 |
| max | 1.1e-13 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter
Significant difference detected in test_generate_plot_mpl__plotter_generate_plot_ply6__.h5, key=/plot_data_hdf/_0y Maximum relative difference: 4.47e-13 (Versions differ by 4.47e-11%)
Displaying heatmap for key /plot_data_hdf/_0y in file test_generate_plot_mpl__plotter_generate_plot_ply6__.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 6.7e-27 |
| max | 1.3e-26 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 2.2e-13 |
| max | 4.5e-13 |
Significant difference detected in test_generate_plot_mpl__plotter_generate_plot_ply6__.h5, key=/plot_data_hdf/_1y Maximum relative difference: 4.10e-14 (Versions differ by 4.10e-12%)
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter Displaying heatmap for key /plot_data_hdf/_1y in file test_generate_plot_mpl__plotter_generate_plot_ply6__.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 5.7e-28 |
| max | 1.1e-27 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 2.1e-14 |
| max | 4.1e-14 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter
Significant difference detected in test_generate_plot_mpl__plotter_generate_plot_ply6__.h5, key=/plot_data_hdf/_3y Maximum relative difference: 5.64e-13 (Versions differ by 5.64e-11%)
Displaying heatmap for key /plot_data_hdf/_3y in file test_generate_plot_mpl__plotter_generate_plot_ply6__.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 1.6e-27 |
| max | 3.2e-27 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 2.8e-13 |
| max | 5.6e-13 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter Displaying heatmap for key /plot_data_hdf/_10y in file test_generate_plot_mpl__plotter_generate_plot_ply6__.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 5.1e-29 |
| max | 1e-28 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 3.3e-16 |
| max | 6.5e-16 |
Significant difference detected in test_generate_plot_mpl__plotter_generate_plot_ply6__.h5, key=/plot_data_hdf/_6y Maximum relative difference: 5.41e-13 (Versions differ by 5.41e-11%)
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter Displaying heatmap for key /plot_data_hdf/_6y in file test_generate_plot_mpl__plotter_generate_plot_ply6__.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 1.4e-27 |
| max | 2.7e-27 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 2.7e-13 |
| max | 5.4e-13 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter
Significant difference detected in test_generate_plot_mpl__plotter_generate_plot_ply6__.h5, key=/plot_data_hdf/_5y Maximum relative difference: 1.55e-13 (Versions differ by 1.55e-11%)
Displaying heatmap for key /plot_data_hdf/_5y in file test_generate_plot_mpl__plotter_generate_plot_ply6__.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 2.4e-27 |
| max | 4.7e-27 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 7.9e-14 |
| max | 1.6e-13 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter
Significant difference detected in test_generate_plot_mpl__plotter_generate_plot_ply6__.h5, key=/plot_data_hdf/_2y Maximum relative difference: 4.04e-13 (Versions differ by 4.04e-11%)
Displaying heatmap for key /plot_data_hdf/_2y in file test_generate_plot_mpl__plotter_generate_plot_ply6__.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 2.7e-27 |
| max | 5.4e-27 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 2e-13 |
| max | 4e-13 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter ================================================== Summary for test_generate_plot_mpl__plotter_generate_plot_ply6__.h5: Total number of keys- in ref1: 27, in ref2: 27 Number of keys with different names in ref1 and ref2: 0 Number of keys with same name but different data in ref1 and ref2: 10 Number of totally same keys: 17 ==================================================
Significant difference detected in test_generate_plot_mpl__plotter_generate_plot_ply15__.h5, key=/plot_data_hdf/_7y Maximum relative difference: 9.96e-14 (Versions differ by 9.96e-12%)
Displaying heatmap for key /plot_data_hdf/_7y in file test_generate_plot_mpl__plotter_generate_plot_ply15__.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 6.2e+24 |
| max | 1.2e+25 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 5.1e-14 |
| max | 1e-13 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter
Displaying heatmap for key /plot_data_hdf/_8y in file test_generate_plot_mpl__plotter_generate_plot_ply15__.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 6.1e+23 |
| max | 1.2e+24 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 3.3e-16 |
| max | 6.5e-16 |
Significant difference detected in test_generate_plot_mpl__plotter_generate_plot_ply15__.h5, key=/plot_data_hdf/_4y Maximum relative difference: 9.96e-14 (Versions differ by 9.96e-12%)
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter Displaying heatmap for key /plot_data_hdf/_4y in file test_generate_plot_mpl__plotter_generate_plot_ply15__.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 6.4e+24 |
| max | 1.3e+25 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 5.1e-14 |
| max | 1e-13 |
Significant difference detected in test_generate_plot_mpl__plotter_generate_plot_ply15__.h5, key=/plot_data_hdf/_0y Maximum relative difference: 6.21e-14 (Versions differ by 6.21e-12%)
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter Displaying heatmap for key /plot_data_hdf/_0y in file test_generate_plot_mpl__plotter_generate_plot_ply15__.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 3.3e+24 |
| max | 6.7e+24 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 3.1e-14 |
| max | 6.2e-14 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter
Significant difference detected in test_generate_plot_mpl__plotter_generate_plot_ply15__.h5, key=/plot_data_hdf/_1y Maximum relative difference: 2.33e-14 (Versions differ by 2.33e-12%)
Displaying heatmap for key /plot_data_hdf/_1y in file test_generate_plot_mpl__plotter_generate_plot_ply15__.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 6.8e+24 |
| max | 1.4e+25 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 1.2e-14 |
| max | 2.3e-14 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter
Significant difference detected in test_generate_plot_mpl__plotter_generate_plot_ply15__.h5, key=/plot_data_hdf/_3y Maximum relative difference: 2.49e-13 (Versions differ by 2.49e-11%)
Displaying heatmap for key /plot_data_hdf/_3y in file test_generate_plot_mpl__plotter_generate_plot_ply15__.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 2.7e+25 |
| max | 5.4e+25 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 1.3e-13 |
| max | 2.5e-13 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter
Significant difference detected in test_generate_plot_mpl__plotter_generate_plot_ply15__.h5, key=/plot_data_hdf/_6y Maximum relative difference: 2.49e-13 (Versions differ by 2.49e-11%)
Displaying heatmap for key /plot_data_hdf/_6y in file test_generate_plot_mpl__plotter_generate_plot_ply15__.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 2.9e+25 |
| max | 5.7e+25 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 1.3e-13 |
| max | 2.5e-13 |
Significant difference detected in test_generate_plot_mpl__plotter_generate_plot_ply15__.h5, key=/plot_data_hdf/_5y Maximum relative difference: 6.35e-13 (Versions differ by 6.35e-11%)
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter
Displaying heatmap for key /plot_data_hdf/_5y in file test_generate_plot_mpl__plotter_generate_plot_ply15__.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 2.8e+25 |
| max | 5.6e+25 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 3.2e-13 |
| max | 6.4e-13 |
Significant difference detected in test_generate_plot_mpl__plotter_generate_plot_ply15__.h5, key=/plot_data_hdf/_2y Maximum relative difference: 6.35e-13 (Versions differ by 6.35e-11%)
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter Displaying heatmap for key /plot_data_hdf/_2y in file test_generate_plot_mpl__plotter_generate_plot_ply15__.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 3e+25 |
| max | 5.9e+25 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 3.2e-13 |
| max | 6.4e-13 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter ================================================== Summary for test_generate_plot_mpl__plotter_generate_plot_ply15__.h5: Total number of keys- in ref1: 23, in ref2: 23 Number of keys with different names in ref1 and ref2: 0 Number of keys with same name but different data in ref1 and ref2: 9 Number of totally same keys: 14 ==================================================
Significant difference detected in test_calculate_plotting_data__plotter_calculate_plotting_data15__.h5, key=/plot_data_hdf/absorption_luminosities_df Maximum relative difference: 6.35e-13 (Versions differ by 6.35e-11%)
Displaying heatmap for key /plot_data_hdf/absorption_luminosities_df in file test_calculate_plotting_data__plotter_calculate_plotting_data15__.h5 Visualising Absolute Differences
| Ā | other | 1401 | 2001 |
|---|---|---|---|
| mean | 2.7e+23 | 1.4e+23 | 1.5e+22 |
| max | 5.6e+25 | 5.7e+25 | 1.2e+25 |
Visualising Relative Differences
| Ā | other | 1401 | 2001 |
|---|---|---|---|
| mean | 4.4e-15 | 2.6e-15 | 1.9e-15 |
| max | 6.4e-13 | 2.5e-13 | 1e-13 |
Significant difference detected in test_calculate_plotting_data__plotter_calculate_plotting_data15__.h5, key=/plot_data_hdf/modeled_spectrum_luminosity Maximum relative difference: 8.07e-14 (Versions differ by 8.07e-12%)
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter Displaying heatmap for key /plot_data_hdf/modeled_spectrum_luminosity in file test_calculate_plotting_data__plotter_calculate_plotting_data15__.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 8.5e+32 |
| max | 1.7e+33 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 4.1e-14 |
| max | 8.1e-14 |
Significant difference detected in test_calculate_plotting_data__plotter_calculate_plotting_data15__.h5, key=/plot_data_hdf/total_luminosities_df Maximum relative difference: 4.77e-13 (Versions differ by 4.77e-11%)
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter Displaying heatmap for key /plot_data_hdf/total_luminosities_df in file test_calculate_plotting_data__plotter_calculate_plotting_data15__.h5 Visualising Absolute Differences
| Ā | other | 1401 | 2001 |
|---|---|---|---|
| mean | 4.9e+23 | 2.6e+23 | 2.6e+22 |
| max | 9.9e+25 | 5.7e+25 | 1.3e+25 |
Visualising Relative Differences
| Ā | other | 1401 | 2001 |
|---|---|---|---|
| mean | 2.8e-15 | 2.7e-15 | 2.4e-15 |
| max | 4.8e-13 | 2.5e-13 | 1e-13 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter
Significant difference detected in test_calculate_plotting_data__plotter_calculate_plotting_data15__.h5, key=/plot_data_hdf/emission_luminosities_df Maximum relative difference: 6.35e-13 (Versions differ by 6.35e-11%)
Displaying heatmap for key /plot_data_hdf/emission_luminosities_df in file test_calculate_plotting_data__plotter_calculate_plotting_data15__.h5 Visualising Absolute Differences
| Ā | other | noint | escatter | 1401 | 2001 |
|---|---|---|---|---|---|
| mean | 2.4e+23 | 1.5e+22 | 1.5e+22 | 1.3e+23 | 1.4e+22 |
| max | 5.9e+25 | 6.7e+24 | 1.4e+25 | 5.4e+25 | 1.3e+25 |
Visualising Relative Differences
| Ā | other | noint | escatter | 1401 | 2001 |
|---|---|---|---|---|---|
| mean | 4.9e-15 | 2e-16 | 1.3e-16 | 2.1e-15 | 1.7e-15 |
| max | 6.4e-13 | 6.2e-14 | 2.3e-14 | 2.5e-13 | 1e-13 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter ================================================== Summary for test_calculate_plotting_data__plotter_calculate_plotting_data15__.h5: Total number of keys- in ref1: 10, in ref2: 10 Number of keys with different names in ref1 and ref2: 0 Number of keys with same name but different data in ref1 and ref2: 4 Number of totally same keys: 6 ==================================================
Significant difference detected in test_calculate_plotting_data__plotter_calculate_plotting_data0__.h5, key=/plot_data_hdf/absorption_luminosities_df Maximum relative difference: 2.23e-14 (Versions differ by 2.23e-12%)
Displaying heatmap for key /plot_data_hdf/absorption_luminosities_df in file test_calculate_plotting_data__plotter_calculate_plotting_data0__.h5 Visualising Absolute Differences
| Ā | other | 1401 | 2001 |
|---|---|---|---|
| mean | 1.3e-30 | 2.2e-30 | 1.6e-33 |
| max | 5.7e-28 | 3.1e-27 | 1.6e-30 |
Visualising Relative Differences
| Ā | other | 1401 | 2001 |
|---|---|---|---|
| mean | 2.2e-16 | 2.8e-16 | 1.3e-17 |
| max | 2.1e-14 | 2.2e-14 | 3.8e-16 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter
Significant difference detected in test_calculate_plotting_data__plotter_calculate_plotting_data0__.h5, key=/plot_data_hdf/total_luminosities_df Maximum relative difference: 2.22e-14 (Versions differ by 2.22e-12%)
Displaying heatmap for key /plot_data_hdf/total_luminosities_df in file test_calculate_plotting_data__plotter_calculate_plotting_data0__.h5 Visualising Absolute Differences
| Ā | other | 1401 | 2001 |
|---|---|---|---|
| mean | 3e-30 | 3.8e-30 | 1.6e-33 |
| max | 2.2e-27 | 3.1e-27 | 1.6e-30 |
Visualising Relative Differences
| Ā | other | 1401 | 2001 |
|---|---|---|---|
| mean | 1.6e-16 | 2.1e-16 | 1.1e-17 |
| max | 2.2e-14 | 2.2e-14 | 3.8e-16 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter
Significant difference detected in test_calculate_plotting_data__plotter_calculate_plotting_data0__.h5, key=/plot_data_hdf/emission_luminosities_df Maximum relative difference: 2.22e-14 (Versions differ by 2.22e-12%)
Displaying heatmap for key /plot_data_hdf/emission_luminosities_df in file test_calculate_plotting_data__plotter_calculate_plotting_data0__.h5 Visualising Absolute Differences
| Ā | other | noint | escatter | 1401 | 2001 |
|---|---|---|---|---|---|
| mean | 1.6e-30 | 0 | 0 | 1.5e-30 | 0 |
| max | 2.2e-27 | 0 | 0 | 3e-27 | 0 |
Visualising Relative Differences
| Ā | other | noint | escatter | 1401 | 2001 |
|---|---|---|---|---|---|
| mean | 1.7e-16 | 0 | 0 | 1.8e-16 | 0 |
| max | 2.2e-14 | 0 | 0 | 2.2e-14 | 0 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter
================================================== Summary for test_calculate_plotting_data__plotter_calculate_plotting_data0__.h5: Total number of keys- in ref1: 10, in ref2: 10 Number of keys with different names in ref1 and ref2: 0 Number of keys with same name but different data in ref1 and ref2: 3 Number of totally same keys: 7 ==================================================
Significant difference detected in test_calculate_plotting_data__plotter_calculate_plotting_data1__.h5, key=/plot_data_hdf/absorption_luminosities_df Maximum relative difference: 2.23e-14 (Versions differ by 2.23e-12%)
Displaying heatmap for key /plot_data_hdf/absorption_luminosities_df in file test_calculate_plotting_data__plotter_calculate_plotting_data1__.h5 Visualising Absolute Differences
| Ā | other | 1401 | 2001 |
|---|---|---|---|
| mean | 1.3e-30 | 2.2e-30 | 1.6e-33 |
| max | 5.7e-28 | 3.1e-27 | 1.6e-30 |
Visualising Relative Differences
| Ā | other | 1401 | 2001 |
|---|---|---|---|
| mean | 2.2e-16 | 2.8e-16 | 1.3e-17 |
| max | 2.1e-14 | 2.2e-14 | 3.8e-16 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter
Significant difference detected in test_calculate_plotting_data__plotter_calculate_plotting_data1__.h5, key=/plot_data_hdf/total_luminosities_df Maximum relative difference: 2.22e-14 (Versions differ by 2.22e-12%)
Displaying heatmap for key /plot_data_hdf/total_luminosities_df in file test_calculate_plotting_data__plotter_calculate_plotting_data1__.h5 Visualising Absolute Differences
| Ā | other | 1401 | 2001 |
|---|---|---|---|
| mean | 3e-30 | 3.8e-30 | 1.6e-33 |
| max | 2.2e-27 | 3.1e-27 | 1.6e-30 |
Visualising Relative Differences
| Ā | other | 1401 | 2001 |
|---|---|---|---|
| mean | 1.6e-16 | 2.1e-16 | 1.1e-17 |
| max | 2.2e-14 | 2.2e-14 | 3.8e-16 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter
Significant difference detected in test_calculate_plotting_data__plotter_calculate_plotting_data1__.h5, key=/plot_data_hdf/emission_luminosities_df Maximum relative difference: 2.22e-14 (Versions differ by 2.22e-12%)
Displaying heatmap for key /plot_data_hdf/emission_luminosities_df in file test_calculate_plotting_data__plotter_calculate_plotting_data1__.h5 Visualising Absolute Differences
| Ā | other | noint | escatter | 1401 | 2001 |
|---|---|---|---|---|---|
| mean | 1.6e-30 | 0 | 0 | 1.5e-30 | 0 |
| max | 2.2e-27 | 0 | 0 | 3e-27 | 0 |
Visualising Relative Differences
| Ā | other | noint | escatter | 1401 | 2001 |
|---|---|---|---|---|---|
| mean | 1.7e-16 | 0 | 0 | 1.8e-16 | 0 |
| max | 2.2e-14 | 0 | 0 | 2.2e-14 | 0 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter ================================================== Summary for test_calculate_plotting_data__plotter_calculate_plotting_data1__.h5: Total number of keys- in ref1: 10, in ref2: 10 Number of keys with different names in ref1 and ref2: 0 Number of keys with same name but different data in ref1 and ref2: 3 Number of totally same keys: 7 ==================================================
Significant difference detected in test_calculate_plotting_data__plotter_calculate_plotting_data14__.h5, key=/plot_data_hdf/absorption_luminosities_df Maximum relative difference: 6.35e-13 (Versions differ by 6.35e-11%)
Displaying heatmap for key /plot_data_hdf/absorption_luminosities_df in file test_calculate_plotting_data__plotter_calculate_plotting_data14__.h5 Visualising Absolute Differences
| Ā | other | 1401 | 2001 |
|---|---|---|---|
| mean | 2.7e+23 | 1.4e+23 | 1.5e+22 |
| max | 5.6e+25 | 5.7e+25 | 1.2e+25 |
Visualising Relative Differences
| Ā | other | 1401 | 2001 |
|---|---|---|---|
| mean | 4.4e-15 | 2.6e-15 | 1.9e-15 |
| max | 6.4e-13 | 2.5e-13 | 1e-13 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter
Significant difference detected in test_calculate_plotting_data__plotter_calculate_plotting_data14__.h5, key=/plot_data_hdf/modeled_spectrum_luminosity Maximum relative difference: 8.07e-14 (Versions differ by 8.07e-12%)
Displaying heatmap for key /plot_data_hdf/modeled_spectrum_luminosity in file test_calculate_plotting_data__plotter_calculate_plotting_data14__.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 8.5e+32 |
| max | 1.7e+33 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 4.1e-14 |
| max | 8.1e-14 |
Significant difference detected in test_calculate_plotting_data__plotter_calculate_plotting_data14__.h5, key=/plot_data_hdf/total_luminosities_df Maximum relative difference: 4.77e-13 (Versions differ by 4.77e-11%)
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter Displaying heatmap for key /plot_data_hdf/total_luminosities_df in file test_calculate_plotting_data__plotter_calculate_plotting_data14__.h5 Visualising Absolute Differences
| Ā | other | 1401 | 2001 |
|---|---|---|---|
| mean | 4.9e+23 | 2.6e+23 | 2.6e+22 |
| max | 9.9e+25 | 5.7e+25 | 1.3e+25 |
Visualising Relative Differences
| Ā | other | 1401 | 2001 |
|---|---|---|---|
| mean | 2.8e-15 | 2.7e-15 | 2.4e-15 |
| max | 4.8e-13 | 2.5e-13 | 1e-13 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter
Significant difference detected in test_calculate_plotting_data__plotter_calculate_plotting_data14__.h5, key=/plot_data_hdf/emission_luminosities_df Maximum relative difference: 6.35e-13 (Versions differ by 6.35e-11%)
Displaying heatmap for key /plot_data_hdf/emission_luminosities_df in file test_calculate_plotting_data__plotter_calculate_plotting_data14__.h5 Visualising Absolute Differences
| Ā | other | noint | escatter | 1401 | 2001 |
|---|---|---|---|---|---|
| mean | 2.4e+23 | 1.5e+22 | 1.5e+22 | 1.3e+23 | 1.4e+22 |
| max | 5.9e+25 | 6.7e+24 | 1.4e+25 | 5.4e+25 | 1.3e+25 |
Visualising Relative Differences
| Ā | other | noint | escatter | 1401 | 2001 |
|---|---|---|---|---|---|
| mean | 4.9e-15 | 2e-16 | 1.3e-16 | 2.1e-15 | 1.7e-15 |
| max | 6.4e-13 | 6.2e-14 | 2.3e-14 | 2.5e-13 | 1e-13 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter ================================================== Summary for test_calculate_plotting_data__plotter_calculate_plotting_data14__.h5: Total number of keys- in ref1: 10, in ref2: 10 Number of keys with different names in ref1 and ref2: 0 Number of keys with same name but different data in ref1 and ref2: 4 Number of totally same keys: 6 ==================================================
Significant difference detected in test_generate_plot_mpl__plotter_generate_plot_ply14__.h5, key=/plot_data_hdf/_7y Maximum relative difference: 9.96e-14 (Versions differ by 9.96e-12%)
Displaying heatmap for key /plot_data_hdf/_7y in file test_generate_plot_mpl__plotter_generate_plot_ply14__.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 6.2e+24 |
| max | 1.2e+25 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 5.1e-14 |
| max | 1e-13 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter
Significant difference detected in test_generate_plot_mpl__plotter_generate_plot_ply14__.h5, key=/plot_data_hdf/_8y Maximum relative difference: 8.07e-14 (Versions differ by 8.07e-12%)
Displaying heatmap for key /plot_data_hdf/_8y in file test_generate_plot_mpl__plotter_generate_plot_ply14__.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 8.5e+24 |
| max | 1.7e+25 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 4.1e-14 |
| max | 8.1e-14 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter
Significant difference detected in test_generate_plot_mpl__plotter_generate_plot_ply14__.h5, key=/plot_data_hdf/_4y Maximum relative difference: 9.96e-14 (Versions differ by 9.96e-12%)
Displaying heatmap for key /plot_data_hdf/_4y in file test_generate_plot_mpl__plotter_generate_plot_ply14__.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 6.4e+24 |
| max | 1.3e+25 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 5.1e-14 |
| max | 1e-13 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter
Significant difference detected in test_generate_plot_mpl__plotter_generate_plot_ply14__.h5, key=/plot_data_hdf/_0y Maximum relative difference: 6.21e-14 (Versions differ by 6.21e-12%)
Displaying heatmap for key /plot_data_hdf/_0y in file test_generate_plot_mpl__plotter_generate_plot_ply14__.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 3.3e+24 |
| max | 6.7e+24 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 3.1e-14 |
| max | 6.2e-14 |
Significant difference detected in test_generate_plot_mpl__plotter_generate_plot_ply14__.h5, key=/plot_data_hdf/_1y Maximum relative difference: 2.33e-14 (Versions differ by 2.33e-12%)
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter Displaying heatmap for key /plot_data_hdf/_1y in file test_generate_plot_mpl__plotter_generate_plot_ply14__.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 6.8e+24 |
| max | 1.4e+25 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 1.2e-14 |
| max | 2.3e-14 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter Displaying heatmap for key /plot_data_hdf/_9y in file test_generate_plot_mpl__plotter_generate_plot_ply14__.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 6.1e+23 |
| max | 1.2e+24 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 3.3e-16 |
| max | 6.5e-16 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter
Significant difference detected in test_generate_plot_mpl__plotter_generate_plot_ply14__.h5, key=/plot_data_hdf/_3y Maximum relative difference: 2.49e-13 (Versions differ by 2.49e-11%)
Displaying heatmap for key /plot_data_hdf/_3y in file test_generate_plot_mpl__plotter_generate_plot_ply14__.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 2.7e+25 |
| max | 5.4e+25 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 1.3e-13 |
| max | 2.5e-13 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter
Significant difference detected in test_generate_plot_mpl__plotter_generate_plot_ply14__.h5, key=/plot_data_hdf/_6y Maximum relative difference: 2.49e-13 (Versions differ by 2.49e-11%)
Displaying heatmap for key /plot_data_hdf/_6y in file test_generate_plot_mpl__plotter_generate_plot_ply14__.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 2.9e+25 |
| max | 5.7e+25 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 1.3e-13 |
| max | 2.5e-13 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter
Significant difference detected in test_generate_plot_mpl__plotter_generate_plot_ply14__.h5, key=/plot_data_hdf/_5y Maximum relative difference: 6.35e-13 (Versions differ by 6.35e-11%)
Displaying heatmap for key /plot_data_hdf/_5y in file test_generate_plot_mpl__plotter_generate_plot_ply14__.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 2.8e+25 |
| max | 5.6e+25 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 3.2e-13 |
| max | 6.4e-13 |
Significant difference detected in test_generate_plot_mpl__plotter_generate_plot_ply14__.h5, key=/plot_data_hdf/_2y Maximum relative difference: 6.35e-13 (Versions differ by 6.35e-11%)
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter Displaying heatmap for key /plot_data_hdf/_2y in file test_generate_plot_mpl__plotter_generate_plot_ply14__.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 3e+25 |
| max | 5.9e+25 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 3.2e-13 |
| max | 6.4e-13 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter ================================================== Summary for test_generate_plot_mpl__plotter_generate_plot_ply14__.h5: Total number of keys- in ref1: 25, in ref2: 25 Number of keys with different names in ref1 and ref2: 0 Number of keys with same name but different data in ref1 and ref2: 10 Number of totally same keys: 15 ==================================================
Significant difference detected in test_generate_plot_mpl__plotter_generate_plot_ply7__.h5, key=/plot_data_hdf/_7y Maximum relative difference: 6.72e-14 (Versions differ by 6.72e-12%)
Displaying heatmap for key /plot_data_hdf/_7y in file test_generate_plot_mpl__plotter_generate_plot_ply7__.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 7e-28 |
| max | 1.4e-27 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 3.5e-14 |
| max | 6.7e-14 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter
Significant difference detected in test_generate_plot_mpl__plotter_generate_plot_ply7__.h5, key=/plot_data_hdf/_4y Maximum relative difference: 1.08e-13 (Versions differ by 1.08e-11%)
Displaying heatmap for key /plot_data_hdf/_4y in file test_generate_plot_mpl__plotter_generate_plot_ply7__.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 7.2e-28 |
| max | 1.4e-27 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 5.5e-14 |
| max | 1.1e-13 |
Significant difference detected in test_generate_plot_mpl__plotter_generate_plot_ply7__.h5, key=/plot_data_hdf/_0y Maximum relative difference: 4.47e-13 (Versions differ by 4.47e-11%)
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter Displaying heatmap for key /plot_data_hdf/_0y in file test_generate_plot_mpl__plotter_generate_plot_ply7__.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 6.7e-27 |
| max | 1.3e-26 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 2.2e-13 |
| max | 4.5e-13 |
Significant difference detected in test_generate_plot_mpl__plotter_generate_plot_ply7__.h5, key=/plot_data_hdf/_1y Maximum relative difference: 4.10e-14 (Versions differ by 4.10e-12%)
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter Displaying heatmap for key /plot_data_hdf/_1y in file test_generate_plot_mpl__plotter_generate_plot_ply7__.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 5.7e-28 |
| max | 1.1e-27 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 2.1e-14 |
| max | 4.1e-14 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter
Displaying heatmap for key /plot_data_hdf/_9y in file test_generate_plot_mpl__plotter_generate_plot_ply7__.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 5.1e-29 |
| max | 1e-28 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 3.3e-16 |
| max | 6.5e-16 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter
Significant difference detected in test_generate_plot_mpl__plotter_generate_plot_ply7__.h5, key=/plot_data_hdf/_3y Maximum relative difference: 5.64e-13 (Versions differ by 5.64e-11%)
Displaying heatmap for key /plot_data_hdf/_3y in file test_generate_plot_mpl__plotter_generate_plot_ply7__.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 1.6e-27 |
| max | 3.2e-27 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 2.8e-13 |
| max | 5.6e-13 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter
Significant difference detected in test_generate_plot_mpl__plotter_generate_plot_ply7__.h5, key=/plot_data_hdf/_6y Maximum relative difference: 5.41e-13 (Versions differ by 5.41e-11%)
Displaying heatmap for key /plot_data_hdf/_6y in file test_generate_plot_mpl__plotter_generate_plot_ply7__.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 1.4e-27 |
| max | 2.7e-27 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 2.7e-13 |
| max | 5.4e-13 |
Significant difference detected in test_generate_plot_mpl__plotter_generate_plot_ply7__.h5, key=/plot_data_hdf/_5y Maximum relative difference: 1.55e-13 (Versions differ by 1.55e-11%)
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter Displaying heatmap for key /plot_data_hdf/_5y in file test_generate_plot_mpl__plotter_generate_plot_ply7__.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 2.4e-27 |
| max | 4.7e-27 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 7.9e-14 |
| max | 1.6e-13 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter
Significant difference detected in test_generate_plot_mpl__plotter_generate_plot_ply7__.h5, key=/plot_data_hdf/_2y Maximum relative difference: 4.04e-13 (Versions differ by 4.04e-11%)
Displaying heatmap for key /plot_data_hdf/_2y in file test_generate_plot_mpl__plotter_generate_plot_ply7__.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 2.7e-27 |
| max | 5.4e-27 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 2e-13 |
| max | 4e-13 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/visualization/tools/tests/test_sdec_plot/test_sdec_plotter ================================================== Summary for test_generate_plot_mpl__plotter_generate_plot_ply7__.h5: Total number of keys- in ref1: 25, in ref2: 25 Number of keys with different names in ref1 and ref2: 0 Number of keys with same name but different data in ref1 and ref2: 9 Number of totally same keys: 16 ==================================================
Significant difference detected in plasma_unittest_radiative_rates_type_blackbody.h5, key=/plasma/transition_probabilities Maximum relative difference: 3.22e-13 (Versions differ by 3.22e-11%)
Displaying heatmap for key /plasma/transition_probabilities in file plasma_unittest_radiative_rates_type_blackbody.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 3.7e-19 | 0 | 1.5e-18 | 1.6e-16 | 0 | 0 | 1.8e-17 | 2.2e-17 | 8.6e-19 | 0 | 3.4e-17 | 0 | 5.9e-22 | 9.4e-21 | 0 | 1.6e-16 | 0 | 0 | 2.6e-16 | 1.1e-19 |
| max | 2.2e-16 | 0 | 2.2e-16 | 5.1e-14 | 0 | 0 | 4.7e-15 | 4.5e-15 | 1.1e-16 | 0 | 1e-14 | 0 | 4.3e-19 | 6.9e-18 | 0 | 5e-14 | 0 | 0 | 5.9e-14 | 8.3e-17 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 2.6e-18 | 0 | 4.1e-17 | 1.3e-15 | 0 | 0 | 5.9e-16 | 3.2e-16 | 5.8e-17 | 0 | 5.9e-16 | 0 | 1.8e-19 | 4.3e-19 | 0 | 2.9e-15 | 0 | 0 | 6e-15 | 7.2e-19 |
| max | 3.8e-16 | 0 | 7.7e-15 | 2.3e-13 | 0 | 0 | 2.1e-13 | 2.5e-14 | 1e-14 | 0 | 4.8e-14 | 0 | 1.3e-16 | 3.1e-16 | 0 | 2.3e-13 | 0 | 0 | 3.2e-13 | 5.2e-16 |
Significant difference detected in plasma_unittest_radiative_rates_type_blackbody.h5, key=/plasma/beta_sobolev Maximum relative difference: 3.61e-13 (Versions differ by 3.61e-11%)
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma Displaying heatmap for key /plasma/beta_sobolev in file plasma_unittest_radiative_rates_type_blackbody.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 3e-17 | 9.4e-16 | 0 | 0 | 1.7e-16 | 1.6e-16 | 7.3e-17 | 0 | 2e-16 | 0 | 0 | 0 | 0 | 9.4e-16 | 0 | 0 | 1.5e-15 | 0 |
| max | 0 | 0 | 3.4e-15 | 2.3e-13 | 0 | 0 | 4.1e-14 | 2.9e-14 | 1e-14 | 0 | 4.8e-14 | 0 | 0 | 0 | 0 | 2.3e-13 | 0 | 0 | 3.6e-13 | 0 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 3e-17 | 9.4e-16 | 0 | 0 | 1.7e-16 | 1.7e-16 | 7.3e-17 | 0 | 2e-16 | 0 | 0 | 0 | 0 | 9.4e-16 | 0 | 0 | 1.5e-15 | 0 |
| max | 0 | 0 | 3.5e-15 | 2.3e-13 | 0 | 0 | 4.1e-14 | 2.9e-14 | 1e-14 | 0 | 4.8e-14 | 0 | 0 | 0 | 0 | 2.3e-13 | 0 | 0 | 3.6e-13 | 0 |
Significant difference detected in plasma_unittest_radiative_rates_type_blackbody.h5, key=/plasma/j_blues Maximum relative difference: 2.06e-13 (Versions differ by 2.06e-11%)
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma Displaying heatmap for key /plasma/j_blues in file plasma_unittest_radiative_rates_type_blackbody.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 4.4e-22 | 0 | 0 | 1.4e-23 | 0 | 0 | 1.1e-22 | 2.2e-22 | 0 | 0 | 1.1e-22 | 0 | 1.1e-22 | 5.5e-23 | 0 | 2.1e-23 | 0 | 0 | 0 | 2.7e-23 |
| max | 4.1e-20 | 0 | 0 | 3.4e-21 | 0 | 0 | 2.7e-20 | 5.4e-20 | 0 | 0 | 2.7e-20 | 0 | 2.7e-20 | 1.4e-20 | 0 | 5.1e-21 | 0 | 0 | 0 | 6.8e-21 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 3.5e-18 | 0 | 0 | 6.3e-18 | 0 | 0 | 8.4e-16 | 1.3e-18 | 0 | 0 | 6.2e-19 | 0 | 6.2e-19 | 6.2e-19 | 0 | 1.6e-18 | 0 | 0 | 0 | 2.1e-18 |
| max | 3.4e-16 | 0 | 0 | 1.6e-15 | 0 | 0 | 2.1e-13 | 3.2e-16 | 0 | 0 | 1.5e-16 | 0 | 1.5e-16 | 1.5e-16 | 0 | 4.1e-16 | 0 | 0 | 0 | 5.2e-16 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma Displaying heatmap for key /plasma/general_level_boltzmann_factor in file plasma_unittest_radiative_rates_type_blackbody.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 4.3e-29 | 0 | 0 | 0 | 0 | 2.2e-29 | 5.4e-30 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 3.2e-27 | 0 | 0 | 0 | 0 | 1.6e-27 | 4e-28 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 3.1e-18 | 0 | 0 | 0 | 0 | 2.5e-18 | 2.4e-18 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 2.3e-16 | 0 | 0 | 0 | 0 | 1.8e-16 | 1.8e-16 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma Displaying heatmap for key /plasma/level_number_density in file plasma_unittest_radiative_rates_type_blackbody.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 1.9e-19 | 0 | 0 | 0 | 0 | 2.3e-20 | 2.9e-21 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 1.4e-17 | 0 | 0 | 0 | 0 | 1.7e-18 | 2.2e-19 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 3.9e-18 | 0 | 0 | 0 | 0 | 3.8e-18 | 2.6e-18 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 3e-16 | 0 | 0 | 0 | 0 | 2.9e-16 | 1.9e-16 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma Displaying heatmap for key /plasma/level_boltzmann_factor in file plasma_unittest_radiative_rates_type_blackbody.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 4.3e-29 | 0 | 0 | 0 | 0 | 2.2e-29 | 5.4e-30 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 3.2e-27 | 0 | 0 | 0 | 0 | 1.6e-27 | 4e-28 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 3.1e-18 | 0 | 0 | 0 | 0 | 2.5e-18 | 2.4e-18 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 2.3e-16 | 0 | 0 | 0 | 0 | 1.8e-16 | 1.8e-16 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Significant difference detected in plasma_unittest_radiative_rates_type_blackbody.h5, key=/plasma/tau_sobolevs Maximum relative difference: 1.03e-14 (Versions differ by 1.03e-12%)
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma Displaying heatmap for key /plasma/tau_sobolevs in file plasma_unittest_radiative_rates_type_blackbody.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 8.8e-19 | 0 | 0 | 0 | 0 | 8.6e-20 | 4.2e-20 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 8.3e-17 | 0 | 0 | 0 | 0 | 1.1e-17 | 3.5e-18 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 3.6e-17 | 0 | 0 | 0 | 0 | 6.5e-17 | 7.3e-17 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 4.5e-15 | 0 | 0 | 0 | 0 | 4.8e-15 | 1e-14 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
Error comparing item: /plasma/dilute_planckian_radiation_field No module named 'tardis.plasma.radiation_field'
Significant difference detected in plasma_unittest_radiative_rates_type_blackbody.h5, key=/plasma/stimulated_emission_factor Maximum relative difference: 1.02e-14 (Versions differ by 1.02e-12%)
Displaying heatmap for key /plasma/stimulated_emission_factor in file plasma_unittest_radiative_rates_type_blackbody.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 6.7e-18 | 0 | 0 | 0 | 0 | 5.4e-18 | 5.8e-18 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 3.3e-16 | 0 | 0 | 0 | 0 | 3.3e-16 | 3.3e-16 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 2.7e-17 | 0 | 0 | 0 | 0 | 5.2e-17 | 7.1e-17 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 4.5e-15 | 0 | 0 | 0 | 0 | 4.4e-15 | 1e-14 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
================================================== Summary for plasma_unittest_radiative_rates_type_blackbody.h5: Total number of keys- in ref1: 36, in ref2: 36 Number of keys with different names in ref1 and ref2: 0 Number of keys with same name but different data in ref1 and ref2: 8 Number of totally same keys: 27 ==================================================
Significant difference detected in plasma_unittest_excitation_dilute-lte.h5, key=/plasma/transition_probabilities Maximum relative difference: 2.06e-13 (Versions differ by 2.06e-11%)
Displaying heatmap for key /plasma/transition_probabilities in file plasma_unittest_excitation_dilute-lte.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 1.4e-20 | 0 | 9.4e-18 | 9.3e-17 | 0 | 0 | 5.9e-22 | 1e-18 | 7.6e-19 | 0 | 2.9e-22 | 0 | 1.5e-22 | 1.2e-21 | 0 | 1.5e-22 | 0 | 0 | 0 | 9.4e-21 |
| max | 6.9e-18 | 0 | 2.1e-15 | 3e-14 | 0 | 0 | 4.3e-19 | 2.2e-16 | 1.1e-16 | 0 | 2.2e-19 | 0 | 1.1e-19 | 8.7e-19 | 0 | 1.1e-19 | 0 | 0 | 0 | 6.9e-18 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 9.9e-19 | 0 | 1.5e-16 | 1.9e-15 | 0 | 0 | 2.9e-16 | 3.2e-17 | 3.9e-17 | 0 | 4.6e-19 | 0 | 2.7e-19 | 4.1e-19 | 0 | 3.3e-19 | 0 | 0 | 0 | 5.8e-19 |
| max | 2.9e-16 | 0 | 1.5e-14 | 1.4e-13 | 0 | 0 | 2.1e-13 | 3.1e-15 | 6.9e-15 | 0 | 3.3e-16 | 0 | 1.9e-16 | 2.9e-16 | 0 | 2.3e-16 | 0 | 0 | 0 | 4.2e-16 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
Significant difference detected in plasma_unittest_excitation_dilute-lte.h5, key=/plasma/beta_sobolev Maximum relative difference: 1.42e-13 (Versions differ by 1.42e-11%)
Displaying heatmap for key /plasma/beta_sobolev in file plasma_unittest_excitation_dilute-lte.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 8.7e-17 | 5.8e-16 | 0 | 0 | 0 | 2e-17 | 2.7e-17 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 1.7e-14 | 1.4e-13 | 0 | 0 | 0 | 3.1e-15 | 3.7e-15 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 8.7e-17 | 5.8e-16 | 0 | 0 | 0 | 2e-17 | 2.7e-17 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 1.7e-14 | 1.4e-13 | 0 | 0 | 0 | 3.1e-15 | 3.7e-15 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Significant difference detected in plasma_unittest_excitation_dilute-lte.h5, key=/plasma/j_blues Maximum relative difference: 2.06e-13 (Versions differ by 2.06e-11%)
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
Displaying heatmap for key /plasma/j_blues in file plasma_unittest_excitation_dilute-lte.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 1.4e-22 | 0 | 0 | 3.4e-24 | 0 | 0 | 2.7e-23 | 4.1e-23 | 0 | 0 | 2.7e-23 | 0 | 1.4e-23 | 6.9e-24 | 0 | 1.7e-24 | 0 | 0 | 0 | 1.7e-24 |
| max | 1.4e-20 | 0 | 0 | 8.5e-22 | 0 | 0 | 6.8e-21 | 1e-20 | 0 | 0 | 6.8e-21 | 0 | 3.4e-21 | 1.7e-21 | 0 | 4.2e-22 | 0 | 0 | 0 | 4.2e-22 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 2.8e-18 | 0 | 0 | 6.2e-18 | 0 | 0 | 8.4e-16 | 1.4e-18 | 0 | 0 | 1.1e-18 | 0 | 6.2e-19 | 6.6e-19 | 0 | 1.3e-18 | 0 | 0 | 0 | 1.6e-18 |
| max | 2.8e-16 | 0 | 0 | 1.5e-15 | 0 | 0 | 2.1e-13 | 3.4e-16 | 0 | 0 | 2.7e-16 | 0 | 1.5e-16 | 1.6e-16 | 0 | 3.2e-16 | 0 | 0 | 0 | 3.8e-16 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
Displaying heatmap for key /plasma/general_level_boltzmann_factor in file plasma_unittest_excitation_dilute-lte.h5
Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 1.1e-29 | 0 | 0 | 0 | 0 | 5.4e-30 | 6.7e-31 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 8.1e-28 | 0 | 0 | 0 | 0 | 4e-28 | 5e-29 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 2.7e-18 | 0 | 0 | 0 | 0 | 3.4e-18 | 1.8e-18 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 2e-16 | 0 | 0 | 0 | 0 | 2.6e-16 | 1.4e-16 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma Displaying heatmap for key /plasma/level_number_density in file plasma_unittest_excitation_dilute-lte.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 4.6e-20 | 0 | 0 | 0 | 0 | 2.9e-21 | 3.6e-22 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 3.5e-18 | 0 | 0 | 0 | 0 | 2.2e-19 | 2.7e-20 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 3.4e-18 | 0 | 0 | 0 | 0 | 2.7e-18 | 1.9e-18 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 2.6e-16 | 0 | 0 | 0 | 0 | 2e-16 | 1.5e-16 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma Displaying heatmap for key /plasma/level_boltzmann_factor in file plasma_unittest_excitation_dilute-lte.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 1.1e-29 | 0 | 0 | 0 | 0 | 5.4e-30 | 6.7e-31 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 8.1e-28 | 0 | 0 | 0 | 0 | 4e-28 | 5e-29 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 2.7e-18 | 0 | 0 | 0 | 0 | 3.4e-18 | 1.8e-18 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 2e-16 | 0 | 0 | 0 | 0 | 2.6e-16 | 1.4e-16 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
Displaying heatmap for key /plasma/tau_sobolevs in file plasma_unittest_excitation_dilute-lte.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 1.4e-19 | 0 | 0 | 0 | 0 | 1.4e-20 | 6.3e-21 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 1.4e-17 | 0 | 0 | 0 | 0 | 1.3e-18 | 6e-19 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 2.3e-17 | 0 | 0 | 0 | 0 | 4.9e-17 | 5.7e-17 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 2.8e-15 | 0 | 0 | 0 | 0 | 3.2e-15 | 6.8e-15 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
Error comparing item: /plasma/dilute_planckian_radiation_field No module named 'tardis.plasma.radiation_field' Displaying heatmap for key /plasma/stimulated_emission_factor in file plasma_unittest_excitation_dilute-lte.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 3.6e-18 | 0 | 0 | 0 | 0 | 5.4e-18 | 4.5e-18 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 2.2e-16 | 0 | 0 | 0 | 0 | 2.2e-16 | 2.2e-16 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 1.6e-17 | 0 | 0 | 0 | 0 | 4.2e-17 | 5.5e-17 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 3e-15 | 0 | 0 | 0 | 0 | 2.9e-15 | 6.8e-15 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
================================================== Summary for plasma_unittest_excitation_dilute-lte.h5: Total number of keys- in ref1: 36, in ref2: 36 Number of keys with different names in ref1 and ref2: 0 Number of keys with same name but different data in ref1 and ref2: 8 Number of totally same keys: 27 ==================================================
Significant difference detected in plasma_unittest_helium_treatment_recomb-nlte_delta_treatment_0.5.h5, key=/plasma/transition_probabilities Maximum relative difference: 6.49e-13 (Versions differ by 6.49e-11%)
Displaying heatmap for key /plasma/transition_probabilities in file plasma_unittest_helium_treatment_recomb-nlte_delta_treatment_0.5.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 1.4e-20 | 0 | 8.5e-19 | 7e-21 | 0 | 4.5e-20 | 5.9e-22 | 3.9e-18 | 2.8e-19 | 0 | 1.2e-21 | 0 | 0 | 5e-19 | 0 | 8.4e-18 | 0 | 2.5e-24 | 4.1e-19 | 2.9e-22 |
| max | 6.9e-18 | 0 | 1.1e-16 | 5.2e-18 | 0 | 1.4e-17 | 4.3e-19 | 1.2e-15 | 6.9e-17 | 0 | 8.7e-19 | 0 | 0 | 1.7e-16 | 0 | 2e-15 | 0 | 1.7e-21 | 1.4e-16 | 2.2e-19 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 9.9e-19 | 0 | 1.9e-17 | 2.1e-18 | 0 | 3.4e-18 | 2.9e-16 | 1.1e-16 | 5.4e-17 | 0 | 3.3e-19 | 0 | 0 | 1.1e-17 | 0 | 8.3e-16 | 0 | 2.7e-15 | 1.3e-17 | 5.2e-19 |
| max | 2.9e-16 | 0 | 9.7e-16 | 1.5e-15 | 0 | 6.6e-16 | 2.1e-13 | 1e-14 | 1.2e-14 | 0 | 2.4e-16 | 0 | 0 | 2.3e-15 | 0 | 1.1e-13 | 0 | 6.5e-13 | 7.7e-16 | 3.7e-16 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
Significant difference detected in plasma_unittest_helium_treatment_recomb-nlte_delta_treatment_0.5.h5, key=/plasma/beta_sobolev Maximum relative difference: 6.49e-13 (Versions differ by 6.49e-11%)
Displaying heatmap for key /plasma/beta_sobolev in file plasma_unittest_helium_treatment_recomb-nlte_delta_treatment_0.5.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 8.9e-18 | 0 | 0 | 1.3e-18 | 0 | 8.1e-17 | 2.7e-17 | 0 | 0 | 0 | 0 | 8.5e-18 | 0 | 7.3e-16 | 0 | 2.6e-15 | 3.1e-18 | 0 |
| max | 0 | 0 | 4.4e-16 | 0 | 0 | 3.3e-16 | 0 | 1e-14 | 2.2e-15 | 0 | 0 | 0 | 0 | 2.1e-15 | 0 | 1.1e-13 | 0 | 6.5e-13 | 7.8e-16 | 0 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 1.2e-17 | 0 | 0 | 1.6e-18 | 0 | 8.2e-17 | 2.8e-17 | 0 | 0 | 0 | 0 | 8.8e-18 | 0 | 7.3e-16 | 0 | 2.6e-15 | 3.4e-18 | 0 |
| max | 0 | 0 | 6.1e-16 | 0 | 0 | 3.9e-16 | 0 | 1e-14 | 2.3e-15 | 0 | 0 | 0 | 0 | 2.2e-15 | 0 | 1.1e-13 | 0 | 6.5e-13 | 8.4e-16 | 0 |
Significant difference detected in plasma_unittest_helium_treatment_recomb-nlte_delta_treatment_0.5.h5, key=/plasma/j_blues Maximum relative difference: 2.06e-13 (Versions differ by 2.06e-11%)
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma Displaying heatmap for key /plasma/j_blues in file plasma_unittest_helium_treatment_recomb-nlte_delta_treatment_0.5.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 1.4e-22 | 0 | 0 | 3.4e-24 | 0 | 0 | 2.7e-23 | 4.1e-23 | 0 | 0 | 2.7e-23 | 0 | 1.4e-23 | 6.9e-24 | 0 | 1.7e-24 | 0 | 0 | 0 | 1.7e-24 |
| max | 1.4e-20 | 0 | 0 | 8.5e-22 | 0 | 0 | 6.8e-21 | 1e-20 | 0 | 0 | 6.8e-21 | 0 | 3.4e-21 | 1.7e-21 | 0 | 4.2e-22 | 0 | 0 | 0 | 4.2e-22 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 2.8e-18 | 0 | 0 | 6.2e-18 | 0 | 0 | 8.4e-16 | 1.4e-18 | 0 | 0 | 1.1e-18 | 0 | 6.2e-19 | 6.6e-19 | 0 | 1.3e-18 | 0 | 0 | 0 | 1.6e-18 |
| max | 2.8e-16 | 0 | 0 | 1.5e-15 | 0 | 0 | 2.1e-13 | 3.4e-16 | 0 | 0 | 2.7e-16 | 0 | 1.5e-16 | 1.6e-16 | 0 | 3.2e-16 | 0 | 0 | 0 | 3.8e-16 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
Displaying heatmap for key /plasma/general_level_boltzmann_factor in file plasma_unittest_helium_treatment_recomb-nlte_delta_treatment_0.5.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 4.3e-29 | 0 | 0 | 0 | 0 | 2.2e-29 | 5.4e-30 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 3.2e-27 | 0 | 0 | 0 | 0 | 1.6e-27 | 4e-28 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 3.1e-18 | 0 | 0 | 0 | 0 | 2.5e-18 | 2.4e-18 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 2.3e-16 | 0 | 0 | 0 | 0 | 1.8e-16 | 1.8e-16 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma Displaying heatmap for key /plasma/level_number_density in file plasma_unittest_helium_treatment_recomb-nlte_delta_treatment_0.5.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 5.9e-18 | 0 | 0 | 0 | 0 | 7.4e-19 | 3.7e-19 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 4.4e-16 | 0 | 0 | 0 | 0 | 5.6e-17 | 2.8e-17 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 2.7e-18 | 0 | 0 | 0 | 0 | 1.7e-18 | 4.3e-18 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 2e-16 | 0 | 0 | 0 | 0 | 1.3e-16 | 3.2e-16 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
Displaying heatmap for key /plasma/level_boltzmann_factor in file plasma_unittest_helium_treatment_recomb-nlte_delta_treatment_0.5.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 4.3e-29 | 0 | 0 | 0 | 0 | 2.2e-29 | 5.4e-30 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 3.2e-27 | 0 | 0 | 0 | 0 | 1.6e-27 | 4e-28 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 3.1e-18 | 0 | 0 | 0 | 0 | 2.5e-18 | 2.4e-18 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 2.3e-16 | 0 | 0 | 0 | 0 | 1.8e-16 | 1.8e-16 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
Significant difference detected in plasma_unittest_helium_treatment_recomb-nlte_delta_treatment_0.5.h5, key=/plasma/tau_sobolevs Maximum relative difference: 1.05e-14 (Versions differ by 1.05e-12%)
Displaying heatmap for key /plasma/tau_sobolevs in file plasma_unittest_helium_treatment_recomb-nlte_delta_treatment_0.5.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 2.1e-17 | 0 | 0 | 0 | 0 | 3.9e-18 | 5.1e-18 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 3.6e-15 | 0 | 0 | 0 | 0 | 5e-16 | 4.4e-16 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 1.8e-17 | 0 | 0 | 0 | 0 | 4.7e-17 | 9.8e-17 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 1.7e-15 | 0 | 0 | 0 | 0 | 3.2e-15 | 1e-14 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
Displaying heatmap for key /plasma/helium_population_updated in file plasma_unittest_helium_treatment_recomb-nlte_delta_treatment_0.5.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 5.9e-18 | 0 | 0 | 0 | 0 | 7.4e-19 | 3.7e-19 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 4.4e-16 | 0 | 0 | 0 | 0 | 5.6e-17 | 2.8e-17 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 2.7e-18 | 0 | 0 | 0 | 0 | 1.7e-18 | 4.3e-18 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 2e-16 | 0 | 0 | 0 | 0 | 1.3e-16 | 3.2e-16 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma Displaying heatmap for key /plasma/helium_population in file plasma_unittest_helium_treatment_recomb-nlte_delta_treatment_0.5.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 8e-38 | 0 | 0 | 0 | 0 | 1.6e-37 | 8e-38 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 6e-36 | 0 | 0 | 0 | 0 | 1.2e-35 | 6e-36 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 1.6e-18 | 0 | 0 | 0 | 0 | 1.5e-18 | 2.5e-18 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 1.2e-16 | 0 | 0 | 0 | 0 | 1.1e-16 | 1.8e-16 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma Error comparing item: /plasma/dilute_planckian_radiation_field No module named 'tardis.plasma.radiation_field'
Significant difference detected in plasma_unittest_helium_treatment_recomb-nlte_delta_treatment_0.5.h5, key=/plasma/stimulated_emission_factor Maximum relative difference: 1.02e-14 (Versions differ by 1.02e-12%)
Displaying heatmap for key /plasma/stimulated_emission_factor in file plasma_unittest_helium_treatment_recomb-nlte_delta_treatment_0.5.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 3.1e-18 | 0 | 0 | 0 | 0 | 4.5e-18 | 7.6e-18 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 1.1e-16 | 0 | 0 | 0 | 0 | 2.2e-16 | 3.3e-16 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 1.1e-17 | 0 | 0 | 0 | 0 | 4e-17 | 9.2e-17 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 1.5e-15 | 0 | 0 | 0 | 0 | 2.9e-15 | 1e-14 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
================================================== Summary for plasma_unittest_helium_treatment_recomb-nlte_delta_treatment_0.5.h5: Total number of keys- in ref1: 41, in ref2: 41 Number of keys with different names in ref1 and ref2: 0 Number of keys with same name but different data in ref1 and ref2: 10 Number of totally same keys: 30 ==================================================
Significant difference detected in plasma_unittest_helium_treatment_recomb-nlte.h5, key=/plasma/transition_probabilities Maximum relative difference: 6.49e-13 (Versions differ by 6.49e-11%)
Displaying heatmap for key /plasma/transition_probabilities in file plasma_unittest_helium_treatment_recomb-nlte.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 1.4e-20 | 0 | 8.5e-19 | 7e-21 | 0 | 4.5e-20 | 5.9e-22 | 3.9e-18 | 2.8e-19 | 0 | 1.2e-21 | 0 | 0 | 5e-19 | 0 | 8.4e-18 | 0 | 2.5e-24 | 4.1e-19 | 2.9e-22 |
| max | 6.9e-18 | 0 | 1.1e-16 | 5.2e-18 | 0 | 1.4e-17 | 4.3e-19 | 1.2e-15 | 6.9e-17 | 0 | 8.7e-19 | 0 | 0 | 1.7e-16 | 0 | 2e-15 | 0 | 1.7e-21 | 1.4e-16 | 2.2e-19 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 9.9e-19 | 0 | 1.9e-17 | 2.1e-18 | 0 | 3.4e-18 | 2.9e-16 | 1.1e-16 | 5.4e-17 | 0 | 3.3e-19 | 0 | 0 | 1.1e-17 | 0 | 8.3e-16 | 0 | 2.7e-15 | 1.3e-17 | 5.2e-19 |
| max | 2.9e-16 | 0 | 9.7e-16 | 1.5e-15 | 0 | 6.6e-16 | 2.1e-13 | 1e-14 | 1.2e-14 | 0 | 2.4e-16 | 0 | 0 | 2.3e-15 | 0 | 1.1e-13 | 0 | 6.5e-13 | 7.7e-16 | 3.7e-16 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
Significant difference detected in plasma_unittest_helium_treatment_recomb-nlte.h5, key=/plasma/beta_sobolev Maximum relative difference: 6.49e-13 (Versions differ by 6.49e-11%)
Displaying heatmap for key /plasma/beta_sobolev in file plasma_unittest_helium_treatment_recomb-nlte.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 8.9e-18 | 0 | 0 | 1.3e-18 | 0 | 8.1e-17 | 2.7e-17 | 0 | 0 | 0 | 0 | 8.5e-18 | 0 | 7.3e-16 | 0 | 2.6e-15 | 3.1e-18 | 0 |
| max | 0 | 0 | 4.4e-16 | 0 | 0 | 3.3e-16 | 0 | 1e-14 | 2.2e-15 | 0 | 0 | 0 | 0 | 2.1e-15 | 0 | 1.1e-13 | 0 | 6.5e-13 | 7.8e-16 | 0 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 1.2e-17 | 0 | 0 | 1.6e-18 | 0 | 8.2e-17 | 2.8e-17 | 0 | 0 | 0 | 0 | 8.8e-18 | 0 | 7.3e-16 | 0 | 2.6e-15 | 3.4e-18 | 0 |
| max | 0 | 0 | 6.1e-16 | 0 | 0 | 3.9e-16 | 0 | 1e-14 | 2.3e-15 | 0 | 0 | 0 | 0 | 2.2e-15 | 0 | 1.1e-13 | 0 | 6.5e-13 | 8.4e-16 | 0 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
Significant difference detected in plasma_unittest_helium_treatment_recomb-nlte.h5, key=/plasma/j_blues Maximum relative difference: 2.06e-13 (Versions differ by 2.06e-11%)
Displaying heatmap for key /plasma/j_blues in file plasma_unittest_helium_treatment_recomb-nlte.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 1.4e-22 | 0 | 0 | 3.4e-24 | 0 | 0 | 2.7e-23 | 4.1e-23 | 0 | 0 | 2.7e-23 | 0 | 1.4e-23 | 6.9e-24 | 0 | 1.7e-24 | 0 | 0 | 0 | 1.7e-24 |
| max | 1.4e-20 | 0 | 0 | 8.5e-22 | 0 | 0 | 6.8e-21 | 1e-20 | 0 | 0 | 6.8e-21 | 0 | 3.4e-21 | 1.7e-21 | 0 | 4.2e-22 | 0 | 0 | 0 | 4.2e-22 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 2.8e-18 | 0 | 0 | 6.2e-18 | 0 | 0 | 8.4e-16 | 1.4e-18 | 0 | 0 | 1.1e-18 | 0 | 6.2e-19 | 6.6e-19 | 0 | 1.3e-18 | 0 | 0 | 0 | 1.6e-18 |
| max | 2.8e-16 | 0 | 0 | 1.5e-15 | 0 | 0 | 2.1e-13 | 3.4e-16 | 0 | 0 | 2.7e-16 | 0 | 1.5e-16 | 1.6e-16 | 0 | 3.2e-16 | 0 | 0 | 0 | 3.8e-16 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
Displaying heatmap for key /plasma/general_level_boltzmann_factor in file plasma_unittest_helium_treatment_recomb-nlte.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 4.3e-29 | 0 | 0 | 0 | 0 | 2.2e-29 | 5.4e-30 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 3.2e-27 | 0 | 0 | 0 | 0 | 1.6e-27 | 4e-28 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 3.1e-18 | 0 | 0 | 0 | 0 | 2.5e-18 | 2.4e-18 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 2.3e-16 | 0 | 0 | 0 | 0 | 1.8e-16 | 1.8e-16 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma Displaying heatmap for key /plasma/level_number_density in file plasma_unittest_helium_treatment_recomb-nlte.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 5.9e-18 | 0 | 0 | 0 | 0 | 7.4e-19 | 3.7e-19 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 4.4e-16 | 0 | 0 | 0 | 0 | 5.6e-17 | 2.8e-17 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 2.7e-18 | 0 | 0 | 0 | 0 | 1.7e-18 | 4.3e-18 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 2e-16 | 0 | 0 | 0 | 0 | 1.3e-16 | 3.2e-16 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
Displaying heatmap for key /plasma/level_boltzmann_factor in file plasma_unittest_helium_treatment_recomb-nlte.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 4.3e-29 | 0 | 0 | 0 | 0 | 2.2e-29 | 5.4e-30 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 3.2e-27 | 0 | 0 | 0 | 0 | 1.6e-27 | 4e-28 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 3.1e-18 | 0 | 0 | 0 | 0 | 2.5e-18 | 2.4e-18 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 2.3e-16 | 0 | 0 | 0 | 0 | 1.8e-16 | 1.8e-16 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
Significant difference detected in plasma_unittest_helium_treatment_recomb-nlte.h5, key=/plasma/tau_sobolevs Maximum relative difference: 1.05e-14 (Versions differ by 1.05e-12%)
Displaying heatmap for key /plasma/tau_sobolevs in file plasma_unittest_helium_treatment_recomb-nlte.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 2.1e-17 | 0 | 0 | 0 | 0 | 3.9e-18 | 5.1e-18 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 3.6e-15 | 0 | 0 | 0 | 0 | 5e-16 | 4.4e-16 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 1.8e-17 | 0 | 0 | 0 | 0 | 4.7e-17 | 9.8e-17 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 1.7e-15 | 0 | 0 | 0 | 0 | 3.2e-15 | 1e-14 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
Displaying heatmap for key /plasma/helium_population_updated in file plasma_unittest_helium_treatment_recomb-nlte.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 5.9e-18 | 0 | 0 | 0 | 0 | 7.4e-19 | 3.7e-19 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 4.4e-16 | 0 | 0 | 0 | 0 | 5.6e-17 | 2.8e-17 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 2.7e-18 | 0 | 0 | 0 | 0 | 1.7e-18 | 4.3e-18 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 2e-16 | 0 | 0 | 0 | 0 | 1.3e-16 | 3.2e-16 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
Displaying heatmap for key /plasma/helium_population in file plasma_unittest_helium_treatment_recomb-nlte.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 8e-38 | 0 | 0 | 0 | 0 | 1.6e-37 | 8e-38 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 6e-36 | 0 | 0 | 0 | 0 | 1.2e-35 | 6e-36 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 1.6e-18 | 0 | 0 | 0 | 0 | 1.5e-18 | 2.5e-18 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 1.2e-16 | 0 | 0 | 0 | 0 | 1.1e-16 | 1.8e-16 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma Error comparing item: /plasma/dilute_planckian_radiation_field No module named 'tardis.plasma.radiation_field'
Significant difference detected in plasma_unittest_helium_treatment_recomb-nlte.h5, key=/plasma/stimulated_emission_factor Maximum relative difference: 1.02e-14 (Versions differ by 1.02e-12%)
Displaying heatmap for key /plasma/stimulated_emission_factor in file plasma_unittest_helium_treatment_recomb-nlte.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 3.1e-18 | 0 | 0 | 0 | 0 | 4.5e-18 | 7.6e-18 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 1.1e-16 | 0 | 0 | 0 | 0 | 2.2e-16 | 3.3e-16 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 1.1e-17 | 0 | 0 | 0 | 0 | 4e-17 | 9.2e-17 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 1.5e-15 | 0 | 0 | 0 | 0 | 2.9e-15 | 1e-14 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
================================================== Summary for plasma_unittest_helium_treatment_recomb-nlte.h5: Total number of keys- in ref1: 41, in ref2: 41 Number of keys with different names in ref1 and ref2: 0 Number of keys with same name but different data in ref1 and ref2: 10 Number of totally same keys: 30 ==================================================
Significant difference detected in plasma_unittest_initial_t_inner_10000 K.h5, key=/plasma/transition_probabilities Maximum relative difference: 9.06e-13 (Versions differ by 9.06e-11%)
Displaying heatmap for key /plasma/transition_probabilities in file plasma_unittest_initial_t_inner_10000 K.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 2.9e-17 | 1.1e-18 | 3.1e-22 | 2.9e-22 | 2.4e-19 | 1.8e-19 | 3e-17 | 1.8e-21 | 1.6e-22 | 3.2e-19 | 3.7e-23 | 5.7e-16 | 6.6e-22 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 8.4e-15 | 3.2e-16 | 2.2e-19 | 2.2e-19 | 1.1e-16 | 4.2e-17 | 1e-14 | 1.3e-18 | 1.1e-19 | 5.6e-17 | 2.7e-20 | 1.5e-13 | 4.9e-19 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 2.6e-15 | 3.8e-15 | 9.9e-19 | 4.8e-19 | 2.9e-18 | 1.5e-17 | 2.3e-15 | 7.3e-19 | 6.8e-19 | 4.6e-18 | 2.2e-19 | 9.8e-15 | 3.8e-18 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 5.5e-13 | 9.1e-13 | 3.8e-16 | 3.4e-16 | 2.9e-16 | 3.4e-15 | 3.4e-13 | 5.2e-16 | 3.5e-16 | 5.8e-16 | 1.6e-16 | 8.4e-13 | 2.7e-15 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
Significant difference detected in plasma_unittest_initial_t_inner_10000 K.h5, key=/plasma/beta_sobolev Maximum relative difference: 9.06e-13 (Versions differ by 9.06e-11%)
Displaying heatmap for key /plasma/beta_sobolev in file plasma_unittest_initial_t_inner_10000 K.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 2.4e-15 | 3.7e-15 | 0 | 0 | 0 | 1.9e-17 | 1.4e-15 | 0 | 0 | 1.8e-18 | 0 | 3.5e-15 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 5.5e-13 | 9.1e-13 | 0 | 0 | 0 | 3.2e-15 | 3.4e-13 | 0 | 0 | 2.2e-16 | 0 | 8.7e-13 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 2.4e-15 | 3.7e-15 | 0 | 0 | 0 | 1.9e-17 | 1.4e-15 | 0 | 0 | 1.8e-18 | 0 | 3.5e-15 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 5.5e-13 | 9.1e-13 | 0 | 0 | 0 | 3.2e-15 | 3.4e-13 | 0 | 0 | 2.2e-16 | 0 | 8.7e-13 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
Displaying heatmap for key /plasma/j_blues in file plasma_unittest_initial_t_inner_10000 K.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 3.6e-23 | 6.9e-24 | 6.9e-24 | 0 | 2.1e-23 | 2.1e-23 | 3.3e-23 | 1.9e-23 | 2.7e-23 | 1.4e-23 | 1e-24 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 6.8e-21 | 1.7e-21 | 1.7e-21 | 0 | 5.1e-21 | 5.1e-21 | 6.8e-21 | 3.4e-21 | 6.8e-21 | 3.4e-21 | 2.5e-22 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 3.3e-18 | 2.1e-18 | 1.8e-18 | 0 | 2.1e-18 | 2.2e-18 | 3.2e-18 | 3.1e-18 | 1.1e-18 | 5.8e-19 | 1.1e-17 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 5.7e-16 | 5.1e-16 | 4.5e-16 | 0 | 5.1e-16 | 5.5e-16 | 5.6e-16 | 6.2e-16 | 2.7e-16 | 1.4e-16 | 2.7e-15 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma Displaying heatmap for key /plasma/general_level_boltzmann_factor in file plasma_unittest_initial_t_inner_10000 K.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 0 | 0 | 0 | 5.4e-30 | 1.1e-29 | 0 | 0 | 8.6e-29 | 0 | 4.3e-29 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 0 | 0 | 0 | 4e-28 | 8.1e-28 | 0 | 0 | 6.5e-27 | 0 | 3.2e-27 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 0 | 0 | 0 | 2.6e-18 | 1.8e-18 | 0 | 0 | 2e-18 | 0 | 2.4e-18 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 0 | 0 | 0 | 2e-16 | 1.4e-16 | 0 | 0 | 1.5e-16 | 0 | 1.8e-16 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
Displaying heatmap for key /plasma/level_number_density in file plasma_unittest_initial_t_inner_10000 K.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 0 | 0 | 0 | 5.8e-21 | 1.2e-20 | 0 | 0 | 2.3e-20 | 0 | 5.8e-21 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 0 | 0 | 0 | 4.3e-19 | 8.7e-19 | 0 | 0 | 1.7e-18 | 0 | 4.3e-19 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 0 | 0 | 0 | 2.3e-18 | 2.2e-18 | 0 | 0 | 1.5e-18 | 0 | 1.6e-18 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 0 | 0 | 0 | 1.7e-16 | 1.6e-16 | 0 | 0 | 1.1e-16 | 0 | 1.2e-16 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma Displaying heatmap for key /plasma/level_boltzmann_factor in file plasma_unittest_initial_t_inner_10000 K.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 0 | 0 | 0 | 5.4e-30 | 1.1e-29 | 0 | 0 | 8.6e-29 | 0 | 4.3e-29 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 0 | 0 | 0 | 4e-28 | 8.1e-28 | 0 | 0 | 6.5e-27 | 0 | 3.2e-27 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 0 | 0 | 0 | 2.6e-18 | 1.8e-18 | 0 | 0 | 2e-18 | 0 | 2.4e-18 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 0 | 0 | 0 | 2e-16 | 1.4e-16 | 0 | 0 | 1.5e-16 | 0 | 1.8e-16 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
Significant difference detected in plasma_unittest_initial_t_inner_10000 K.h5, key=/plasma/tau_sobolevs Maximum relative difference: 3.10e-13 (Versions differ by 3.10e-11%)
Displaying heatmap for key /plasma/tau_sobolevs in file plasma_unittest_initial_t_inner_10000 K.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 0 | 0 | 0 | 3e-20 | 1.2e-19 | 0 | 0 | 7.6e-21 | 0 | 3.1e-20 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 0 | 0 | 0 | 3.7e-18 | 1.4e-17 | 0 | 0 | 1.7e-18 | 0 | 6.9e-18 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 0 | 0 | 0 | 1.9e-17 | 2.1e-15 | 0 | 0 | 2.1e-18 | 0 | 3.2e-18 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 0 | 0 | 0 | 3.2e-15 | 3.1e-13 | 0 | 0 | 1.5e-16 | 0 | 1.9e-16 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Significant difference detected in plasma_unittest_initial_t_inner_10000 K.h5, key=/plasma/stimulated_emission_factor Maximum relative difference: 3.10e-13 (Versions differ by 3.10e-11%)
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma Error comparing item: /plasma/dilute_planckian_radiation_field No module named 'tardis.plasma.radiation_field' Displaying heatmap for key /plasma/stimulated_emission_factor in file plasma_unittest_initial_t_inner_10000 K.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 0 | 0 | 0 | 2.2e-18 | 6.3e-18 | 0 | 0 | 9e-19 | 0 | 4.5e-19 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 0 | 0 | 0 | 2.2e-16 | 3.3e-16 | 0 | 0 | 1.1e-16 | 0 | 1.1e-16 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 0 | 0 | 0 | 1.5e-17 | 2.1e-15 | 0 | 0 | 1.4e-18 | 0 | 6.1e-19 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 0 | 0 | 0 | 3e-15 | 3.1e-13 | 0 | 0 | 2.2e-16 | 0 | 1.5e-16 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
================================================== Summary for plasma_unittest_initial_t_inner_10000 K.h5: Total number of keys- in ref1: 36, in ref2: 36 Number of keys with different names in ref1 and ref2: 0 Number of keys with same name but different data in ref1 and ref2: 8 Number of totally same keys: 27 ==================================================
Significant difference detected in plasma_unittest_line_interaction_type_scatter.h5, key=/plasma/j_blues Maximum relative difference: 2.06e-13 (Versions differ by 2.06e-11%)
Displaying heatmap for key /plasma/j_blues in file plasma_unittest_line_interaction_type_scatter.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 1.4e-22 | 0 | 0 | 3.4e-24 | 0 | 0 | 2.7e-23 | 4.1e-23 | 0 | 0 | 2.7e-23 | 0 | 1.4e-23 | 6.9e-24 | 0 | 1.7e-24 | 0 | 0 | 0 | 1.7e-24 |
| max | 1.4e-20 | 0 | 0 | 8.5e-22 | 0 | 0 | 6.8e-21 | 1e-20 | 0 | 0 | 6.8e-21 | 0 | 3.4e-21 | 1.7e-21 | 0 | 4.2e-22 | 0 | 0 | 0 | 4.2e-22 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 2.8e-18 | 0 | 0 | 6.2e-18 | 0 | 0 | 8.4e-16 | 1.4e-18 | 0 | 0 | 1.1e-18 | 0 | 6.2e-19 | 6.6e-19 | 0 | 1.3e-18 | 0 | 0 | 0 | 1.6e-18 |
| max | 2.8e-16 | 0 | 0 | 1.5e-15 | 0 | 0 | 2.1e-13 | 3.4e-16 | 0 | 0 | 2.7e-16 | 0 | 1.5e-16 | 1.6e-16 | 0 | 3.2e-16 | 0 | 0 | 0 | 3.8e-16 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
Displaying heatmap for key /plasma/general_level_boltzmann_factor in file plasma_unittest_line_interaction_type_scatter.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 4.3e-29 | 0 | 0 | 0 | 0 | 2.2e-29 | 5.4e-30 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 3.2e-27 | 0 | 0 | 0 | 0 | 1.6e-27 | 4e-28 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 3.1e-18 | 0 | 0 | 0 | 0 | 2.5e-18 | 2.4e-18 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 2.3e-16 | 0 | 0 | 0 | 0 | 1.8e-16 | 1.8e-16 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma Displaying heatmap for key /plasma/level_number_density in file plasma_unittest_line_interaction_type_scatter.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 1.9e-19 | 0 | 0 | 0 | 0 | 2.3e-20 | 2.9e-21 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 1.4e-17 | 0 | 0 | 0 | 0 | 1.7e-18 | 2.2e-19 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 3.9e-18 | 0 | 0 | 0 | 0 | 3.8e-18 | 2.6e-18 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 3e-16 | 0 | 0 | 0 | 0 | 2.9e-16 | 1.9e-16 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma Displaying heatmap for key /plasma/level_boltzmann_factor in file plasma_unittest_line_interaction_type_scatter.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 4.3e-29 | 0 | 0 | 0 | 0 | 2.2e-29 | 5.4e-30 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 3.2e-27 | 0 | 0 | 0 | 0 | 1.6e-27 | 4e-28 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 3.1e-18 | 0 | 0 | 0 | 0 | 2.5e-18 | 2.4e-18 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 2.3e-16 | 0 | 0 | 0 | 0 | 1.8e-16 | 1.8e-16 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Significant difference detected in plasma_unittest_line_interaction_type_scatter.h5, key=/plasma/tau_sobolevs Maximum relative difference: 1.03e-14 (Versions differ by 1.03e-12%)
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma Displaying heatmap for key /plasma/tau_sobolevs in file plasma_unittest_line_interaction_type_scatter.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 8.8e-19 | 0 | 0 | 0 | 0 | 8.6e-20 | 4.2e-20 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 8.3e-17 | 0 | 0 | 0 | 0 | 1.1e-17 | 3.5e-18 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 3.6e-17 | 0 | 0 | 0 | 0 | 6.5e-17 | 7.3e-17 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 4.5e-15 | 0 | 0 | 0 | 0 | 4.8e-15 | 1e-14 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
Significant difference detected in plasma_unittest_line_interaction_type_scatter.h5, key=/plasma/stimulated_emission_factor Maximum relative difference: 1.02e-14 (Versions differ by 1.02e-12%)
Error comparing item: /plasma/dilute_planckian_radiation_field No module named 'tardis.plasma.radiation_field'
Displaying heatmap for key /plasma/stimulated_emission_factor in file plasma_unittest_line_interaction_type_scatter.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 6.7e-18 | 0 | 0 | 0 | 0 | 5.4e-18 | 5.8e-18 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 3.3e-16 | 0 | 0 | 0 | 0 | 3.3e-16 | 3.3e-16 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 2.7e-17 | 0 | 0 | 0 | 0 | 5.2e-17 | 7.1e-17 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 4.5e-15 | 0 | 0 | 0 | 0 | 4.4e-15 | 1e-14 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
================================================== Summary for plasma_unittest_line_interaction_type_scatter.h5: Total number of keys- in ref1: 33, in ref2: 33 Number of keys with different names in ref1 and ref2: 0 Number of keys with same name but different data in ref1 and ref2: 6 Number of totally same keys: 26 ==================================================
Significant difference detected in plasma_unittest_radiative_rates_type_detailed.h5, key=/plasma/transition_probabilities Maximum relative difference: 3.57e-13 (Versions differ by 3.57e-11%)
Displaying heatmap for key /plasma/transition_probabilities in file plasma_unittest_radiative_rates_type_detailed.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 2.3e-20 | 0 | 7.8e-19 | 1.6e-16 | 0 | 0 | 9.3e-18 | 1.5e-17 | 8.3e-19 | 0 | 2.2e-17 | 0 | 1.5e-22 | 0 | 0 | 9.6e-17 | 0 | 0 | 1.5e-16 | 9.4e-21 |
| max | 1.4e-17 | 0 | 1.1e-16 | 5.1e-14 | 0 | 0 | 2.2e-15 | 3.7e-15 | 1.1e-16 | 0 | 6.4e-15 | 0 | 1.1e-19 | 0 | 0 | 2.8e-14 | 0 | 0 | 4.9e-14 | 6.9e-18 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 1.1e-18 | 0 | 4e-17 | 1.3e-15 | 0 | 0 | 5.2e-16 | 2.7e-16 | 5.8e-17 | 0 | 8.1e-16 | 0 | 2.7e-19 | 0 | 0 | 4e-15 | 0 | 0 | 5.4e-15 | 5.8e-19 |
| max | 3.8e-16 | 0 | 7.7e-15 | 2.3e-13 | 0 | 0 | 2.1e-13 | 2.8e-14 | 1e-14 | 0 | 4.8e-14 | 0 | 2e-16 | 0 | 0 | 2.3e-13 | 0 | 0 | 3.6e-13 | 4.2e-16 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
Significant difference detected in plasma_unittest_radiative_rates_type_detailed.h5, key=/plasma/beta_sobolev Maximum relative difference: 3.61e-13 (Versions differ by 3.61e-11%)
Displaying heatmap for key /plasma/beta_sobolev in file plasma_unittest_radiative_rates_type_detailed.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 3e-17 | 9.4e-16 | 0 | 0 | 1.7e-16 | 1.6e-16 | 7.3e-17 | 0 | 2e-16 | 0 | 0 | 0 | 0 | 9.4e-16 | 0 | 0 | 1.5e-15 | 0 |
| max | 0 | 0 | 3.4e-15 | 2.3e-13 | 0 | 0 | 4.1e-14 | 2.9e-14 | 1e-14 | 0 | 4.8e-14 | 0 | 0 | 0 | 0 | 2.3e-13 | 0 | 0 | 3.6e-13 | 0 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 3e-17 | 9.4e-16 | 0 | 0 | 1.7e-16 | 1.7e-16 | 7.3e-17 | 0 | 2e-16 | 0 | 0 | 0 | 0 | 9.4e-16 | 0 | 0 | 1.5e-15 | 0 |
| max | 0 | 0 | 3.5e-15 | 2.3e-13 | 0 | 0 | 4.1e-14 | 2.9e-14 | 1e-14 | 0 | 4.8e-14 | 0 | 0 | 0 | 0 | 2.3e-13 | 0 | 0 | 3.6e-13 | 0 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
Significant difference detected in plasma_unittest_radiative_rates_type_detailed.h5, key=/plasma/j_blues Maximum relative difference: 2.06e-13 (Versions differ by 2.06e-11%)
Displaying heatmap for key /plasma/j_blues in file plasma_unittest_radiative_rates_type_detailed.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 1.4e-22 | 0 | 0 | 3.4e-24 | 0 | 0 | 2.7e-23 | 4.1e-23 | 0 | 0 | 2.7e-23 | 0 | 1.4e-23 | 6.9e-24 | 0 | 1.7e-24 | 0 | 0 | 0 | 1.7e-24 |
| max | 1.4e-20 | 0 | 0 | 8.5e-22 | 0 | 0 | 6.8e-21 | 1e-20 | 0 | 0 | 6.8e-21 | 0 | 3.4e-21 | 1.7e-21 | 0 | 4.2e-22 | 0 | 0 | 0 | 4.2e-22 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 2.8e-18 | 0 | 0 | 6.2e-18 | 0 | 0 | 8.4e-16 | 1.4e-18 | 0 | 0 | 1.1e-18 | 0 | 6.2e-19 | 6.6e-19 | 0 | 1.3e-18 | 0 | 0 | 0 | 1.6e-18 |
| max | 2.8e-16 | 0 | 0 | 1.5e-15 | 0 | 0 | 2.1e-13 | 3.4e-16 | 0 | 0 | 2.7e-16 | 0 | 1.5e-16 | 1.6e-16 | 0 | 3.2e-16 | 0 | 0 | 0 | 3.8e-16 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
Displaying heatmap for key /plasma/general_level_boltzmann_factor in file plasma_unittest_radiative_rates_type_detailed.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 4.3e-29 | 0 | 0 | 0 | 0 | 2.2e-29 | 5.4e-30 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 3.2e-27 | 0 | 0 | 0 | 0 | 1.6e-27 | 4e-28 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 3.1e-18 | 0 | 0 | 0 | 0 | 2.5e-18 | 2.4e-18 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 2.3e-16 | 0 | 0 | 0 | 0 | 1.8e-16 | 1.8e-16 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma Displaying heatmap for key /plasma/level_number_density in file plasma_unittest_radiative_rates_type_detailed.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 1.9e-19 | 0 | 0 | 0 | 0 | 2.3e-20 | 2.9e-21 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 1.4e-17 | 0 | 0 | 0 | 0 | 1.7e-18 | 2.2e-19 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 3.9e-18 | 0 | 0 | 0 | 0 | 3.8e-18 | 2.6e-18 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 3e-16 | 0 | 0 | 0 | 0 | 2.9e-16 | 1.9e-16 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma Displaying heatmap for key /plasma/level_boltzmann_factor in file plasma_unittest_radiative_rates_type_detailed.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 4.3e-29 | 0 | 0 | 0 | 0 | 2.2e-29 | 5.4e-30 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 3.2e-27 | 0 | 0 | 0 | 0 | 1.6e-27 | 4e-28 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 3.1e-18 | 0 | 0 | 0 | 0 | 2.5e-18 | 2.4e-18 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 2.3e-16 | 0 | 0 | 0 | 0 | 1.8e-16 | 1.8e-16 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
Significant difference detected in plasma_unittest_radiative_rates_type_detailed.h5, key=/plasma/tau_sobolevs Maximum relative difference: 1.03e-14 (Versions differ by 1.03e-12%)
Displaying heatmap for key /plasma/tau_sobolevs in file plasma_unittest_radiative_rates_type_detailed.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 8.8e-19 | 0 | 0 | 0 | 0 | 8.6e-20 | 4.2e-20 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 8.3e-17 | 0 | 0 | 0 | 0 | 1.1e-17 | 3.5e-18 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 3.6e-17 | 0 | 0 | 0 | 0 | 6.5e-17 | 7.3e-17 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 4.5e-15 | 0 | 0 | 0 | 0 | 4.8e-15 | 1e-14 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
Error comparing item: /plasma/dilute_planckian_radiation_field No module named 'tardis.plasma.radiation_field'
Significant difference detected in plasma_unittest_radiative_rates_type_detailed.h5, key=/plasma/stimulated_emission_factor Maximum relative difference: 1.02e-14 (Versions differ by 1.02e-12%)
Displaying heatmap for key /plasma/stimulated_emission_factor in file plasma_unittest_radiative_rates_type_detailed.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 6.7e-18 | 0 | 0 | 0 | 0 | 5.4e-18 | 5.8e-18 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 3.3e-16 | 0 | 0 | 0 | 0 | 3.3e-16 | 3.3e-16 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 2.7e-17 | 0 | 0 | 0 | 0 | 5.2e-17 | 7.1e-17 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 4.5e-15 | 0 | 0 | 0 | 0 | 4.4e-15 | 1e-14 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
================================================== Summary for plasma_unittest_radiative_rates_type_detailed.h5: Total number of keys- in ref1: 36, in ref2: 36 Number of keys with different names in ref1 and ref2: 0 Number of keys with same name but different data in ref1 and ref2: 8 Number of totally same keys: 27 ==================================================
Significant difference detected in plasma_unittest_ionization_nebular.h5, key=/plasma/transition_probabilities Maximum relative difference: 4.18e-13 (Versions differ by 4.18e-11%)
Displaying heatmap for key /plasma/transition_probabilities in file plasma_unittest_ionization_nebular.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 7.2e-18 | 0 | 1.6e-18 | 9.4e-21 | 0 | 9e-17 | 5.9e-22 | 1.1e-19 | 8.9e-19 | 1.5e-16 | 2.9e-22 | 5.3e-17 | 1.5e-22 | 5.9e-22 | 6.5e-17 | 1.5e-22 | 5.6e-17 | 1.9e-16 | 0 | 1.7e-16 |
| max | 2.2e-15 | 0 | 5.6e-16 | 6.9e-18 | 0 | 3.2e-14 | 4.3e-19 | 2.8e-17 | 1.1e-16 | 4.9e-14 | 2.2e-19 | 1.7e-14 | 1.1e-19 | 4.3e-19 | 2.4e-14 | 1.1e-19 | 1.9e-14 | 5.9e-14 | 0 | 3.1e-14 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 1.6e-16 | 0 | 4e-17 | 2e-18 | 0 | 2.1e-15 | 2.9e-16 | 1.7e-17 | 7.7e-17 | 3e-15 | 4.3e-19 | 5.7e-16 | 2.6e-19 | 2e-19 | 4.3e-16 | 3.3e-19 | 1.2e-15 | 6.1e-15 | 0 | 3.9e-15 |
| max | 1.2e-14 | 0 | 5.7e-15 | 1.4e-15 | 0 | 4.1e-13 | 2.1e-13 | 3e-15 | 1.1e-14 | 4.2e-13 | 3.1e-16 | 9.8e-14 | 1.8e-16 | 1.4e-16 | 1e-13 | 2.3e-16 | 2.1e-13 | 3.8e-13 | 0 | 3.6e-13 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
Significant difference detected in plasma_unittest_ionization_nebular.h5, key=/plasma/beta_sobolev Maximum relative difference: 4.18e-13 (Versions differ by 4.18e-11%)
Displaying heatmap for key /plasma/beta_sobolev in file plasma_unittest_ionization_nebular.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 4.9e-17 | 0 | 3.4e-17 | 0 | 0 | 1.7e-15 | 0 | 2.2e-17 | 9.8e-17 | 1.7e-15 | 0 | 4e-16 | 0 | 0 | 4.2e-16 | 0 | 8.4e-16 | 1.6e-15 | 0 | 2e-15 |
| max | 1.2e-14 | 0 | 5.2e-15 | 0 | 0 | 4.1e-13 | 0 | 3.1e-15 | 1.1e-14 | 4.2e-13 | 0 | 9.9e-14 | 0 | 0 | 1e-13 | 0 | 2.1e-13 | 3.8e-13 | 0 | 3.6e-13 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 4.9e-17 | 0 | 3.5e-17 | 0 | 0 | 1.7e-15 | 0 | 2.2e-17 | 9.8e-17 | 1.7e-15 | 0 | 4e-16 | 0 | 0 | 4.2e-16 | 0 | 8.4e-16 | 1.6e-15 | 0 | 2e-15 |
| max | 1.2e-14 | 0 | 5.3e-15 | 0 | 0 | 4.1e-13 | 0 | 3.1e-15 | 1.1e-14 | 4.2e-13 | 0 | 9.9e-14 | 0 | 0 | 1e-13 | 0 | 2.1e-13 | 3.8e-13 | 0 | 3.6e-13 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
Significant difference detected in plasma_unittest_ionization_nebular.h5, key=/plasma/j_blues Maximum relative difference: 2.06e-13 (Versions differ by 2.06e-11%)
Displaying heatmap for key /plasma/j_blues in file plasma_unittest_ionization_nebular.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 1.4e-22 | 0 | 0 | 3.4e-24 | 0 | 0 | 2.7e-23 | 4.1e-23 | 0 | 0 | 2.7e-23 | 0 | 1.4e-23 | 6.9e-24 | 0 | 1.7e-24 | 0 | 0 | 0 | 1.7e-24 |
| max | 1.4e-20 | 0 | 0 | 8.5e-22 | 0 | 0 | 6.8e-21 | 1e-20 | 0 | 0 | 6.8e-21 | 0 | 3.4e-21 | 1.7e-21 | 0 | 4.2e-22 | 0 | 0 | 0 | 4.2e-22 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 2.8e-18 | 0 | 0 | 6.2e-18 | 0 | 0 | 8.4e-16 | 1.4e-18 | 0 | 0 | 1.1e-18 | 0 | 6.2e-19 | 6.6e-19 | 0 | 1.3e-18 | 0 | 0 | 0 | 1.6e-18 |
| max | 2.8e-16 | 0 | 0 | 1.5e-15 | 0 | 0 | 2.1e-13 | 3.4e-16 | 0 | 0 | 2.7e-16 | 0 | 1.5e-16 | 1.6e-16 | 0 | 3.2e-16 | 0 | 0 | 0 | 3.8e-16 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
Displaying heatmap for key /plasma/general_level_boltzmann_factor in file plasma_unittest_ionization_nebular.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 4.3e-29 | 0 | 0 | 0 | 0 | 2.2e-29 | 5.4e-30 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 3.2e-27 | 0 | 0 | 0 | 0 | 1.6e-27 | 4e-28 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 3.1e-18 | 0 | 0 | 0 | 0 | 2.5e-18 | 2.4e-18 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 2.3e-16 | 0 | 0 | 0 | 0 | 1.8e-16 | 1.8e-16 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma Displaying heatmap for key /plasma/level_number_density in file plasma_unittest_ionization_nebular.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 1.9e-19 | 0 | 0 | 0 | 0 | 2.3e-20 | 1.2e-20 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 1.4e-17 | 0 | 0 | 0 | 0 | 1.7e-18 | 8.7e-19 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 2.3e-18 | 0 | 0 | 0 | 0 | 1.5e-18 | 3.7e-18 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 1.7e-16 | 0 | 0 | 0 | 0 | 1.1e-16 | 2.8e-16 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
Displaying heatmap for key /plasma/level_boltzmann_factor in file plasma_unittest_ionization_nebular.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 4.3e-29 | 0 | 0 | 0 | 0 | 2.2e-29 | 5.4e-30 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 3.2e-27 | 0 | 0 | 0 | 0 | 1.6e-27 | 4e-28 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 3.1e-18 | 0 | 0 | 0 | 0 | 2.5e-18 | 2.4e-18 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 2.3e-16 | 0 | 0 | 0 | 0 | 1.8e-16 | 1.8e-16 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
Significant difference detected in plasma_unittest_ionization_nebular.h5, key=/plasma/tau_sobolevs Maximum relative difference: 1.06e-14 (Versions differ by 1.06e-12%)
Displaying heatmap for key /plasma/tau_sobolevs in file plasma_unittest_ionization_nebular.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 4.3e-19 | 0 | 0 | 0 | 0 | 5.8e-20 | 1.8e-19 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 5.6e-17 | 0 | 0 | 0 | 0 | 9.5e-18 | 1.5e-17 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 1.6e-17 | 0 | 0 | 0 | 0 | 2.2e-17 | 9.8e-17 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 1.5e-15 | 0 | 0 | 0 | 0 | 3.1e-15 | 1.1e-14 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
Error comparing item: /plasma/dilute_planckian_radiation_field No module named 'tardis.plasma.radiation_field'
Significant difference detected in plasma_unittest_ionization_nebular.h5, key=/plasma/stimulated_emission_factor Maximum relative difference: 1.02e-14 (Versions differ by 1.02e-12%)
Displaying heatmap for key /plasma/stimulated_emission_factor in file plasma_unittest_ionization_nebular.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 3.1e-18 | 0 | 0 | 0 | 0 | 1.8e-18 | 7.6e-18 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 2.2e-16 | 0 | 0 | 0 | 0 | 2.2e-16 | 3.3e-16 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 1.1e-17 | 0 | 0 | 0 | 0 | 1.9e-17 | 9.2e-17 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 1.5e-15 | 0 | 0 | 0 | 0 | 2.9e-15 | 1e-14 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
================================================== Summary for plasma_unittest_ionization_nebular.h5: Total number of keys- in ref1: 39, in ref2: 39 Number of keys with different names in ref1 and ref2: 0 Number of keys with same name but different data in ref1 and ref2: 8 Number of totally same keys: 30 ==================================================
Significant difference detected in plasma_unittest_initial_t_rad_10000 K.h5, key=/plasma/transition_probabilities Maximum relative difference: 4.39e-13 (Versions differ by 4.39e-11%)
Displaying heatmap for key /plasma/transition_probabilities in file plasma_unittest_initial_t_rad_10000 K.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 3.8e-19 | 2.8e-17 | 5.3e-20 | 1.5e-19 | 1.5e-19 | 3e-20 | 5.1e-19 | 2.8e-19 | 0 | 4.5e-19 | 0 | 2.8e-19 | 2e-18 | 1.1e-16 | 3.8e-19 | 8.4e-17 | 1.5e-19 | 1.5e-19 | 1.5e-19 | 0 |
| max | 2.2e-16 | 9.8e-15 | 2.8e-17 | 1.1e-16 | 1.1e-16 | 1.4e-17 | 2.2e-16 | 1.1e-16 | 0 | 1.5e-16 | 0 | 1.1e-16 | 5.6e-16 | 3.6e-14 | 2.2e-16 | 3e-14 | 1.1e-16 | 1.1e-16 | 1.1e-16 | 0 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 1.9e-18 | 1.9e-15 | 3.5e-18 | 2.4e-19 | 1.8e-19 | 2.3e-18 | 5.1e-18 | 5.1e-18 | 0 | 8.7e-17 | 0 | 3.9e-18 | 4.6e-17 | 2.3e-15 | 1.4e-18 | 5.6e-16 | 1.9e-19 | 1.9e-19 | 2.4e-19 | 0 |
| max | 2.7e-16 | 4.4e-13 | 3.7e-16 | 1.7e-16 | 1.3e-16 | 2.7e-16 | 4.7e-16 | 3.7e-16 | 0 | 8.9e-15 | 0 | 3.1e-16 | 2.5e-15 | 3.3e-13 | 2.6e-16 | 1.3e-13 | 1.3e-16 | 1.3e-16 | 1.7e-16 | 0 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
Significant difference detected in plasma_unittest_initial_t_rad_10000 K.h5, key=/plasma/beta_sobolev Maximum relative difference: 4.39e-13 (Versions differ by 4.39e-11%)
Displaying heatmap for key /plasma/beta_sobolev in file plasma_unittest_initial_t_rad_10000 K.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 1.8e-15 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 3.5e-17 | 0 | 0 | 9.9e-18 | 1.3e-15 | 0 | 5.3e-16 | 0 | 0 | 0 | 0 |
| max | 0 | 4.4e-13 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 8.7e-15 | 0 | 0 | 2.4e-15 | 3.3e-13 | 0 | 1.3e-13 | 0 | 0 | 0 | 0 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 1.8e-15 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 3.5e-17 | 0 | 0 | 1e-17 | 1.3e-15 | 0 | 5.3e-16 | 0 | 0 | 0 | 0 |
| max | 0 | 4.4e-13 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 8.7e-15 | 0 | 0 | 2.5e-15 | 3.3e-13 | 0 | 1.3e-13 | 0 | 0 | 0 | 0 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
Displaying heatmap for key /plasma/j_blues in file plasma_unittest_initial_t_rad_10000 K.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 6.9e-24 | 0 | 3.4e-24 | 3.4e-24 | 1.7e-24 | 1.7e-24 | 3.4e-24 | 3.4e-24 | 0 | 1.7e-24 | 0 | 1.7e-24 | 1.7e-24 | 1.7e-24 | 1.7e-24 | 1.7e-24 | 1.7e-24 | 1.7e-24 | 8.6e-25 | 0 |
| max | 8.5e-22 | 0 | 8.5e-22 | 4.2e-22 | 4.2e-22 | 4.2e-22 | 4.2e-22 | 4.2e-22 | 0 | 4.2e-22 | 0 | 2.1e-22 | 2.1e-22 | 2.1e-22 | 2.1e-22 | 2.1e-22 | 2.1e-22 | 2.1e-22 | 2.1e-22 | 0 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 1.2e-18 | 0 | 8.5e-19 | 9.5e-19 | 5.3e-19 | 5.8e-19 | 1.3e-18 | 1.4e-18 | 0 | 8e-19 | 0 | 9.2e-19 | 9.8e-19 | 1e-18 | 1.1e-18 | 1.2e-18 | 1.2e-18 | 1.3e-18 | 6.9e-19 | 0 |
| max | 1.5e-16 | 0 | 2.1e-16 | 1.2e-16 | 1.3e-16 | 1.4e-16 | 1.6e-16 | 1.7e-16 | 0 | 2e-16 | 0 | 1.1e-16 | 1.2e-16 | 1.3e-16 | 1.4e-16 | 1.5e-16 | 1.5e-16 | 1.6e-16 | 1.7e-16 | 0 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
Error comparing item: /plasma/dilute_planckian_radiation_field No module named 'tardis.plasma.radiation_field'
================================================== Summary for plasma_unittest_initial_t_rad_10000 K.h5: Total number of keys- in ref1: 36, in ref2: 36 Number of keys with different names in ref1 and ref2: 0 Number of keys with same name but different data in ref1 and ref2: 3 Number of totally same keys: 32 ==================================================
Significant difference detected in plasma_unittest_disable_electron_scattering_True.h5, key=/plasma/transition_probabilities Maximum relative difference: 3.57e-13 (Versions differ by 3.57e-11%)
Displaying heatmap for key /plasma/transition_probabilities in file plasma_unittest_disable_electron_scattering_True.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 2.3e-20 | 0 | 7.8e-19 | 1.6e-16 | 0 | 0 | 9.3e-18 | 1.5e-17 | 8.3e-19 | 0 | 2.2e-17 | 0 | 1.5e-22 | 0 | 0 | 9.6e-17 | 0 | 0 | 1.5e-16 | 9.4e-21 |
| max | 1.4e-17 | 0 | 1.1e-16 | 5.1e-14 | 0 | 0 | 2.2e-15 | 3.7e-15 | 1.1e-16 | 0 | 6.4e-15 | 0 | 1.1e-19 | 0 | 0 | 2.8e-14 | 0 | 0 | 4.9e-14 | 6.9e-18 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 1.1e-18 | 0 | 4e-17 | 1.3e-15 | 0 | 0 | 5.2e-16 | 2.7e-16 | 5.8e-17 | 0 | 8.1e-16 | 0 | 2.7e-19 | 0 | 0 | 4e-15 | 0 | 0 | 5.4e-15 | 5.8e-19 |
| max | 3.8e-16 | 0 | 7.7e-15 | 2.3e-13 | 0 | 0 | 2.1e-13 | 2.8e-14 | 1e-14 | 0 | 4.8e-14 | 0 | 2e-16 | 0 | 0 | 2.3e-13 | 0 | 0 | 3.6e-13 | 4.2e-16 |
Significant difference detected in plasma_unittest_disable_electron_scattering_True.h5, key=/plasma/beta_sobolev Maximum relative difference: 3.61e-13 (Versions differ by 3.61e-11%)
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma Displaying heatmap for key /plasma/beta_sobolev in file plasma_unittest_disable_electron_scattering_True.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 3e-17 | 9.4e-16 | 0 | 0 | 1.7e-16 | 1.6e-16 | 7.3e-17 | 0 | 2e-16 | 0 | 0 | 0 | 0 | 9.4e-16 | 0 | 0 | 1.5e-15 | 0 |
| max | 0 | 0 | 3.4e-15 | 2.3e-13 | 0 | 0 | 4.1e-14 | 2.9e-14 | 1e-14 | 0 | 4.8e-14 | 0 | 0 | 0 | 0 | 2.3e-13 | 0 | 0 | 3.6e-13 | 0 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 3e-17 | 9.4e-16 | 0 | 0 | 1.7e-16 | 1.7e-16 | 7.3e-17 | 0 | 2e-16 | 0 | 0 | 0 | 0 | 9.4e-16 | 0 | 0 | 1.5e-15 | 0 |
| max | 0 | 0 | 3.5e-15 | 2.3e-13 | 0 | 0 | 4.1e-14 | 2.9e-14 | 1e-14 | 0 | 4.8e-14 | 0 | 0 | 0 | 0 | 2.3e-13 | 0 | 0 | 3.6e-13 | 0 |
Significant difference detected in plasma_unittest_disable_electron_scattering_True.h5, key=/plasma/j_blues Maximum relative difference: 2.06e-13 (Versions differ by 2.06e-11%)
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma Displaying heatmap for key /plasma/j_blues in file plasma_unittest_disable_electron_scattering_True.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 1.4e-22 | 0 | 0 | 3.4e-24 | 0 | 0 | 2.7e-23 | 4.1e-23 | 0 | 0 | 2.7e-23 | 0 | 1.4e-23 | 6.9e-24 | 0 | 1.7e-24 | 0 | 0 | 0 | 1.7e-24 |
| max | 1.4e-20 | 0 | 0 | 8.5e-22 | 0 | 0 | 6.8e-21 | 1e-20 | 0 | 0 | 6.8e-21 | 0 | 3.4e-21 | 1.7e-21 | 0 | 4.2e-22 | 0 | 0 | 0 | 4.2e-22 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 2.8e-18 | 0 | 0 | 6.2e-18 | 0 | 0 | 8.4e-16 | 1.4e-18 | 0 | 0 | 1.1e-18 | 0 | 6.2e-19 | 6.6e-19 | 0 | 1.3e-18 | 0 | 0 | 0 | 1.6e-18 |
| max | 2.8e-16 | 0 | 0 | 1.5e-15 | 0 | 0 | 2.1e-13 | 3.4e-16 | 0 | 0 | 2.7e-16 | 0 | 1.5e-16 | 1.6e-16 | 0 | 3.2e-16 | 0 | 0 | 0 | 3.8e-16 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma Displaying heatmap for key /plasma/general_level_boltzmann_factor in file plasma_unittest_disable_electron_scattering_True.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 4.3e-29 | 0 | 0 | 0 | 0 | 2.2e-29 | 5.4e-30 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 3.2e-27 | 0 | 0 | 0 | 0 | 1.6e-27 | 4e-28 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 3.1e-18 | 0 | 0 | 0 | 0 | 2.5e-18 | 2.4e-18 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 2.3e-16 | 0 | 0 | 0 | 0 | 1.8e-16 | 1.8e-16 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma Displaying heatmap for key /plasma/level_number_density in file plasma_unittest_disable_electron_scattering_True.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 1.9e-19 | 0 | 0 | 0 | 0 | 2.3e-20 | 2.9e-21 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 1.4e-17 | 0 | 0 | 0 | 0 | 1.7e-18 | 2.2e-19 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 3.9e-18 | 0 | 0 | 0 | 0 | 3.8e-18 | 2.6e-18 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 3e-16 | 0 | 0 | 0 | 0 | 2.9e-16 | 1.9e-16 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma Displaying heatmap for key /plasma/level_boltzmann_factor in file plasma_unittest_disable_electron_scattering_True.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 4.3e-29 | 0 | 0 | 0 | 0 | 2.2e-29 | 5.4e-30 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 3.2e-27 | 0 | 0 | 0 | 0 | 1.6e-27 | 4e-28 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 3.1e-18 | 0 | 0 | 0 | 0 | 2.5e-18 | 2.4e-18 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 2.3e-16 | 0 | 0 | 0 | 0 | 1.8e-16 | 1.8e-16 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
Significant difference detected in plasma_unittest_disable_electron_scattering_True.h5, key=/plasma/tau_sobolevs Maximum relative difference: 1.03e-14 (Versions differ by 1.03e-12%)
Displaying heatmap for key /plasma/tau_sobolevs in file plasma_unittest_disable_electron_scattering_True.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 8.8e-19 | 0 | 0 | 0 | 0 | 8.6e-20 | 4.2e-20 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 8.3e-17 | 0 | 0 | 0 | 0 | 1.1e-17 | 3.5e-18 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 3.6e-17 | 0 | 0 | 0 | 0 | 6.5e-17 | 7.3e-17 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 4.5e-15 | 0 | 0 | 0 | 0 | 4.8e-15 | 1e-14 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Significant difference detected in plasma_unittest_disable_electron_scattering_True.h5, key=/plasma/stimulated_emission_factor Maximum relative difference: 1.02e-14 (Versions differ by 1.02e-12%)
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma Error comparing item: /plasma/dilute_planckian_radiation_field No module named 'tardis.plasma.radiation_field' Displaying heatmap for key /plasma/stimulated_emission_factor in file plasma_unittest_disable_electron_scattering_True.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 6.7e-18 | 0 | 0 | 0 | 0 | 5.4e-18 | 5.8e-18 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 3.3e-16 | 0 | 0 | 0 | 0 | 3.3e-16 | 3.3e-16 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 2.7e-17 | 0 | 0 | 0 | 0 | 5.2e-17 | 7.1e-17 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 4.5e-15 | 0 | 0 | 0 | 0 | 4.4e-15 | 1e-14 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
================================================== Summary for plasma_unittest_disable_electron_scattering_True.h5: Total number of keys- in ref1: 36, in ref2: 36 Number of keys with different names in ref1 and ref2: 0 Number of keys with same name but different data in ref1 and ref2: 8 Number of totally same keys: 27 ==================================================
Significant difference detected in plasma_unittest_nlte_classical_nebular.h5, key=/plasma/transition_probabilities Maximum relative difference: 3.81e-08 (Versions differ by 3.81e-06%)
Displaying heatmap for key /plasma/transition_probabilities in file plasma_unittest_nlte_classical_nebular.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 7.9e-11 | 1e-11 | 1.1e-11 | 8.3e-12 | 2.5e-12 | 2.4e-12 | 1.5e-12 | 1.5e-12 | 1.5e-13 | 9.7e-13 | 4.4e-14 | 2.2e-13 | 1.2e-13 | 1.3e-13 | 1.5e-13 | 2.2e-14 | 1.7e-14 | 1.6e-14 | 8.5e-16 | 2.2e-15 |
| max | 8.6e-09 | 1.2e-09 | 1.4e-09 | 1.2e-09 | 3.5e-10 | 3.4e-10 | 2.1e-10 | 2.2e-10 | 2.1e-11 | 1.4e-10 | 6.2e-12 | 3.1e-11 | 1.7e-11 | 1.8e-11 | 2.1e-11 | 3.1e-12 | 2.3e-12 | 2.2e-12 | 8.6e-14 | 3e-13 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 2e-09 | 3.1e-10 | 4.1e-10 | 3.8e-10 | 1.3e-10 | 1.5e-10 | 1e-10 | 1.2e-10 | 1.2e-11 | 8.9e-11 | 4.2e-12 | 2.3e-11 | 1.3e-11 | 1.5e-11 | 1.8e-11 | 2.8e-12 | 2.3e-12 | 2.3e-12 | 9.2e-14 | 3.3e-13 |
| max | 3.8e-08 | 5.9e-09 | 7.8e-09 | 7.2e-09 | 2.5e-09 | 2.7e-09 | 1.9e-09 | 2.2e-09 | 2.3e-10 | 1.7e-09 | 7.8e-11 | 4.3e-10 | 2.4e-10 | 2.8e-10 | 3.4e-10 | 5.3e-11 | 4.3e-11 | 4.2e-11 | 1.7e-12 | 6.1e-12 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
Significant difference detected in plasma_unittest_nlte_classical_nebular.h5, key=/plasma/beta_sobolev Maximum relative difference: 4.15e-08 (Versions differ by 4.15e-06%)
Displaying heatmap for key /plasma/beta_sobolev in file plasma_unittest_nlte_classical_nebular.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 3.6e-10 | 5.3e-11 | 7.3e-11 | 7.3e-11 | 2.7e-11 | 3.1e-11 | 2.3e-11 | 2.7e-11 | 2.9e-12 | 2.1e-11 | 1e-12 | 5.5e-12 | 3.2e-12 | 3.6e-12 | 4.4e-12 | 7e-13 | 5.6e-13 | 5.5e-13 | 2.3e-14 | 7.9e-14 |
| max | 1.3e-08 | 2.6e-09 | 4.2e-09 | 4.6e-09 | 1.8e-09 | 2.2e-09 | 1.6e-09 | 2e-09 | 2.1e-10 | 1.6e-09 | 7.6e-11 | 4.2e-10 | 2.4e-10 | 2.8e-10 | 3.4e-10 | 5.3e-11 | 4.3e-11 | 4.2e-11 | 1.6e-12 | 6.1e-12 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 7.1e-10 | 9.9e-11 | 1.2e-10 | 1.1e-10 | 3.6e-11 | 3.9e-11 | 2.7e-11 | 3.1e-11 | 3.2e-12 | 2.3e-11 | 1.1e-12 | 5.7e-12 | 3.3e-12 | 3.7e-12 | 4.5e-12 | 7e-13 | 5.6e-13 | 5.6e-13 | 2.3e-14 | 7.9e-14 |
| max | 4.2e-08 | 6.3e-09 | 8.2e-09 | 7.5e-09 | 2.6e-09 | 2.8e-09 | 2e-09 | 2.3e-09 | 2.4e-10 | 1.7e-09 | 8e-11 | 4.3e-10 | 2.5e-10 | 2.8e-10 | 3.5e-10 | 5.4e-11 | 4.3e-11 | 4.3e-11 | 1.6e-12 | 6.1e-12 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
Significant difference detected in plasma_unittest_nlte_classical_nebular.h5, key=/plasma/j_blues Maximum relative difference: 2.06e-13 (Versions differ by 2.06e-11%)
Displaying heatmap for key /plasma/j_blues in file plasma_unittest_nlte_classical_nebular.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 1.4e-22 | 0 | 0 | 3.4e-24 | 0 | 0 | 2.7e-23 | 4.1e-23 | 0 | 0 | 2.7e-23 | 0 | 1.4e-23 | 6.9e-24 | 0 | 1.7e-24 | 0 | 0 | 0 | 1.7e-24 |
| max | 1.4e-20 | 0 | 0 | 8.5e-22 | 0 | 0 | 6.8e-21 | 1e-20 | 0 | 0 | 6.8e-21 | 0 | 3.4e-21 | 1.7e-21 | 0 | 4.2e-22 | 0 | 0 | 0 | 4.2e-22 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 2.8e-18 | 0 | 0 | 6.2e-18 | 0 | 0 | 8.4e-16 | 1.4e-18 | 0 | 0 | 1.1e-18 | 0 | 6.2e-19 | 6.6e-19 | 0 | 1.3e-18 | 0 | 0 | 0 | 1.6e-18 |
| max | 2.8e-16 | 0 | 0 | 1.5e-15 | 0 | 0 | 2.1e-13 | 3.4e-16 | 0 | 0 | 2.7e-16 | 0 | 1.5e-16 | 1.6e-16 | 0 | 3.2e-16 | 0 | 0 | 0 | 3.8e-16 |
Significant difference detected in plasma_unittest_nlte_classical_nebular.h5, key=/plasma/general_level_boltzmann_factor Maximum relative difference: 4.87e-08 (Versions differ by 4.87e-06%)
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma Displaying heatmap for key /plasma/general_level_boltzmann_factor in file plasma_unittest_nlte_classical_nebular.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 2.6e-19 | 4.3e-20 | 6.5e-20 | 7.3e-20 | 3.2e-20 | 4.4e-20 | 4e-20 | 6e-20 | 8.2e-21 | 7.7e-20 | 4.8e-21 | 3.4e-20 | 2.6e-20 | 3.8e-20 | 6.1e-20 | 1.2e-20 | 1.3e-20 | 1.6e-20 | 7.6e-22 | 3.8e-21 |
| max | 1.3e-17 | 2.3e-18 | 3.6e-18 | 4.2e-18 | 1.9e-18 | 2.7e-18 | 2.4e-18 | 3.7e-18 | 5.2e-19 | 4.9e-18 | 3.1e-19 | 2.2e-18 | 1.7e-18 | 2.5e-18 | 4e-18 | 8.2e-19 | 8.6e-19 | 1.1e-18 | 5.2e-20 | 2.6e-19 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 2.2e-08 | 4e-09 | 6.5e-09 | 7.7e-09 | 3.5e-09 | 5.2e-09 | 4.9e-09 | 7.8e-09 | 1.1e-09 | 1.1e-08 | 7.1e-10 | 5.3e-09 | 4.2e-09 | 6.4e-09 | 1.1e-08 | 2.2e-09 | 2.4e-09 | 3.2e-09 | 1.6e-10 | 8.2e-10 |
| max | 4.9e-08 | 8.8e-09 | 1.4e-08 | 1.7e-08 | 7.8e-09 | 1.2e-08 | 1.1e-08 | 1.7e-08 | 2.5e-09 | 2.4e-08 | 1.6e-09 | 1.2e-08 | 9.2e-09 | 1.4e-08 | 2.4e-08 | 4.9e-09 | 5.3e-09 | 7.1e-09 | 3.5e-10 | 1.8e-09 |
Significant difference detected in plasma_unittest_nlte_classical_nebular.h5, key=/plasma/level_number_density Maximum relative difference: 4.87e-08 (Versions differ by 4.87e-06%)
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma Displaying heatmap for key /plasma/level_number_density in file plasma_unittest_nlte_classical_nebular.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 1.7e-09 | 2e-10 | 2.2e-10 | 1.8e-10 | 5.5e-11 | 5.7e-11 | 3.7e-11 | 4.1e-11 | 4.2e-12 | 2.9e-11 | 1.3e-12 | 7.2e-12 | 4.1e-12 | 4.6e-12 | 5.5e-12 | 8.5e-13 | 6.7e-13 | 6.6e-13 | 2.4e-14 | 9.3e-14 |
| max | 8.8e-08 | 1.1e-08 | 1.2e-08 | 1e-08 | 3.3e-09 | 3.4e-09 | 2.3e-09 | 2.6e-09 | 2.6e-10 | 1.9e-09 | 8.7e-11 | 4.7e-10 | 2.7e-10 | 3e-10 | 3.7e-10 | 5.7e-11 | 4.6e-11 | 4.5e-11 | 1.6e-12 | 6.4e-12 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 2.2e-08 | 4e-09 | 6.5e-09 | 7.7e-09 | 3.5e-09 | 5.2e-09 | 4.9e-09 | 7.8e-09 | 1.1e-09 | 1.1e-08 | 7.1e-10 | 5.3e-09 | 4.2e-09 | 6.4e-09 | 1.1e-08 | 2.2e-09 | 2.4e-09 | 3.2e-09 | 1.6e-10 | 8.2e-10 |
| max | 4.9e-08 | 8.8e-09 | 1.4e-08 | 1.7e-08 | 7.8e-09 | 1.2e-08 | 1.1e-08 | 1.7e-08 | 2.5e-09 | 2.4e-08 | 1.6e-09 | 1.2e-08 | 9.2e-09 | 1.4e-08 | 2.4e-08 | 4.9e-09 | 5.3e-09 | 7.1e-09 | 3.5e-10 | 1.8e-09 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
Significant difference detected in plasma_unittest_nlte_classical_nebular.h5, key=/plasma/level_boltzmann_factor Maximum relative difference: 4.87e-08 (Versions differ by 4.87e-06%)
Displaying heatmap for key /plasma/level_boltzmann_factor in file plasma_unittest_nlte_classical_nebular.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 2.6e-19 | 4.3e-20 | 6.5e-20 | 7.3e-20 | 3.2e-20 | 4.4e-20 | 4e-20 | 6e-20 | 8.2e-21 | 7.7e-20 | 4.8e-21 | 3.4e-20 | 2.6e-20 | 3.8e-20 | 6.1e-20 | 1.2e-20 | 1.3e-20 | 1.6e-20 | 7.6e-22 | 3.8e-21 |
| max | 1.3e-17 | 2.3e-18 | 3.6e-18 | 4.2e-18 | 1.9e-18 | 2.7e-18 | 2.4e-18 | 3.7e-18 | 5.2e-19 | 4.9e-18 | 3.1e-19 | 2.2e-18 | 1.7e-18 | 2.5e-18 | 4e-18 | 8.2e-19 | 8.6e-19 | 1.1e-18 | 5.2e-20 | 2.6e-19 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 2.2e-08 | 4e-09 | 6.5e-09 | 7.7e-09 | 3.5e-09 | 5.2e-09 | 4.9e-09 | 7.8e-09 | 1.1e-09 | 1.1e-08 | 7.1e-10 | 5.3e-09 | 4.2e-09 | 6.4e-09 | 1.1e-08 | 2.2e-09 | 2.4e-09 | 3.2e-09 | 1.6e-10 | 8.2e-10 |
| max | 4.9e-08 | 8.8e-09 | 1.4e-08 | 1.7e-08 | 7.8e-09 | 1.2e-08 | 1.1e-08 | 1.7e-08 | 2.5e-09 | 2.4e-08 | 1.6e-09 | 1.2e-08 | 9.2e-09 | 1.4e-08 | 2.4e-08 | 4.9e-09 | 5.3e-09 | 7.1e-09 | 3.5e-10 | 1.8e-09 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
Significant difference detected in plasma_unittest_nlte_classical_nebular.h5, key=/plasma/tau_sobolevs Maximum relative difference: 4.87e-08 (Versions differ by 4.87e-06%)
Displaying heatmap for key /plasma/tau_sobolevs in file plasma_unittest_nlte_classical_nebular.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 2.3e-09 | 2.8e-10 | 3.1e-10 | 2.5e-10 | 8.2e-11 | 8.5e-11 | 5.7e-11 | 6.4e-11 | 6.6e-12 | 4.6e-11 | 2.2e-12 | 1.2e-11 | 6.6e-12 | 7.5e-12 | 9.1e-12 | 1.4e-12 | 1.1e-12 | 1.1e-12 | 4e-14 | 1.6e-13 |
| max | 1.5e-07 | 1.9e-08 | 2.2e-08 | 1.8e-08 | 5.9e-09 | 6.2e-09 | 4.2e-09 | 4.7e-09 | 4.9e-10 | 3.5e-09 | 1.6e-10 | 8.8e-10 | 5e-10 | 5.7e-10 | 6.9e-10 | 1.1e-10 | 8.7e-11 | 8.6e-11 | 3.1e-12 | 1.2e-11 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 2.8e-08 | 5e-09 | 8.2e-09 | 9.4e-09 | 4.3e-09 | 6.4e-09 | 6.1e-09 | 9.6e-09 | 1.4e-09 | 1.3e-08 | 8.6e-10 | 6.4e-09 | 5e-09 | 7.8e-09 | 1.3e-08 | 2.7e-09 | 2.9e-09 | 3.9e-09 | 1.9e-10 | 9.9e-10 |
| max | 4.9e-08 | 8.8e-09 | 1.4e-08 | 1.7e-08 | 7.8e-09 | 1.2e-08 | 1.1e-08 | 1.7e-08 | 2.5e-09 | 2.4e-08 | 1.6e-09 | 1.2e-08 | 9.2e-09 | 1.4e-08 | 2.4e-08 | 4.9e-09 | 5.3e-09 | 7.1e-09 | 3.5e-10 | 1.8e-09 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
Significant difference detected in plasma_unittest_nlte_classical_nebular.h5, key=/plasma/stimulated_emission_factor Maximum relative difference: 5.67e-14 (Versions differ by 5.67e-12%)
Error comparing item: /plasma/dilute_planckian_radiation_field No module named 'tardis.plasma.radiation_field' Displaying heatmap for key /plasma/stimulated_emission_factor in file plasma_unittest_nlte_classical_nebular.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 5.3e-17 | 4.9e-17 | 5e-17 | 4e-17 | 3.8e-17 | 3.2e-17 | 3.6e-17 | 2.7e-17 | 2.4e-17 | 3.1e-17 | 1.8e-17 | 2.2e-17 | 1.5e-17 | 2.4e-17 | 3.1e-17 | 1.4e-17 | 1.3e-17 | 1.6e-17 | 1.4e-17 | 1.1e-17 |
| max | 4.4e-16 | 5.6e-16 | 7.8e-16 | 4.4e-16 | 5.6e-16 | 4.4e-16 | 3.3e-16 | 4.4e-16 | 5.6e-16 | 7.8e-16 | 3.3e-16 | 5.6e-16 | 2.2e-16 | 4.4e-16 | 1.1e-15 | 3.3e-16 | 5.6e-16 | 3.3e-16 | 3.3e-16 | 5.6e-16 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 1.3e-16 | 1.5e-16 | 3.5e-16 | 8.5e-17 | 9.4e-17 | 7.6e-17 | 1.1e-16 | 8.5e-17 | 1.6e-16 | 6.5e-17 | 3.5e-17 | 5.5e-17 | 3.2e-17 | 6.3e-17 | 1.1e-16 | 5.1e-17 | 5.4e-17 | 8.6e-17 | 9e-17 | 3.5e-16 |
| max | 2.3e-15 | 3.3e-15 | 1.8e-14 | 1.9e-15 | 2.7e-15 | 2e-15 | 6.9e-15 | 3.3e-15 | 8.9e-15 | 3.2e-15 | 1.2e-15 | 2.9e-15 | 1.1e-15 | 3e-15 | 9e-15 | 3.2e-15 | 6.7e-15 | 5.2e-15 | 8.7e-15 | 5.7e-14 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
================================================== Summary for plasma_unittest_nlte_classical_nebular.h5: Total number of keys- in ref1: 38, in ref2: 38 Number of keys with different names in ref1 and ref2: 0 Number of keys with same name but different data in ref1 and ref2: 8 Number of totally same keys: 29 ==================================================
Significant difference detected in plasma_unittest_disable_electron_scattering_False.h5, key=/plasma/transition_probabilities Maximum relative difference: 3.57e-13 (Versions differ by 3.57e-11%)
Displaying heatmap for key /plasma/transition_probabilities in file plasma_unittest_disable_electron_scattering_False.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 2.3e-20 | 0 | 7.8e-19 | 1.6e-16 | 0 | 0 | 9.3e-18 | 1.5e-17 | 8.3e-19 | 0 | 2.2e-17 | 0 | 1.5e-22 | 0 | 0 | 9.6e-17 | 0 | 0 | 1.5e-16 | 9.4e-21 |
| max | 1.4e-17 | 0 | 1.1e-16 | 5.1e-14 | 0 | 0 | 2.2e-15 | 3.7e-15 | 1.1e-16 | 0 | 6.4e-15 | 0 | 1.1e-19 | 0 | 0 | 2.8e-14 | 0 | 0 | 4.9e-14 | 6.9e-18 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 1.1e-18 | 0 | 4e-17 | 1.3e-15 | 0 | 0 | 5.2e-16 | 2.7e-16 | 5.8e-17 | 0 | 8.1e-16 | 0 | 2.7e-19 | 0 | 0 | 4e-15 | 0 | 0 | 5.4e-15 | 5.8e-19 |
| max | 3.8e-16 | 0 | 7.7e-15 | 2.3e-13 | 0 | 0 | 2.1e-13 | 2.8e-14 | 1e-14 | 0 | 4.8e-14 | 0 | 2e-16 | 0 | 0 | 2.3e-13 | 0 | 0 | 3.6e-13 | 4.2e-16 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
Significant difference detected in plasma_unittest_disable_electron_scattering_False.h5, key=/plasma/beta_sobolev Maximum relative difference: 3.61e-13 (Versions differ by 3.61e-11%)
Displaying heatmap for key /plasma/beta_sobolev in file plasma_unittest_disable_electron_scattering_False.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 3e-17 | 9.4e-16 | 0 | 0 | 1.7e-16 | 1.6e-16 | 7.3e-17 | 0 | 2e-16 | 0 | 0 | 0 | 0 | 9.4e-16 | 0 | 0 | 1.5e-15 | 0 |
| max | 0 | 0 | 3.4e-15 | 2.3e-13 | 0 | 0 | 4.1e-14 | 2.9e-14 | 1e-14 | 0 | 4.8e-14 | 0 | 0 | 0 | 0 | 2.3e-13 | 0 | 0 | 3.6e-13 | 0 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 3e-17 | 9.4e-16 | 0 | 0 | 1.7e-16 | 1.7e-16 | 7.3e-17 | 0 | 2e-16 | 0 | 0 | 0 | 0 | 9.4e-16 | 0 | 0 | 1.5e-15 | 0 |
| max | 0 | 0 | 3.5e-15 | 2.3e-13 | 0 | 0 | 4.1e-14 | 2.9e-14 | 1e-14 | 0 | 4.8e-14 | 0 | 0 | 0 | 0 | 2.3e-13 | 0 | 0 | 3.6e-13 | 0 |
Significant difference detected in plasma_unittest_disable_electron_scattering_False.h5, key=/plasma/j_blues Maximum relative difference: 2.06e-13 (Versions differ by 2.06e-11%)
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma Displaying heatmap for key /plasma/j_blues in file plasma_unittest_disable_electron_scattering_False.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 1.4e-22 | 0 | 0 | 3.4e-24 | 0 | 0 | 2.7e-23 | 4.1e-23 | 0 | 0 | 2.7e-23 | 0 | 1.4e-23 | 6.9e-24 | 0 | 1.7e-24 | 0 | 0 | 0 | 1.7e-24 |
| max | 1.4e-20 | 0 | 0 | 8.5e-22 | 0 | 0 | 6.8e-21 | 1e-20 | 0 | 0 | 6.8e-21 | 0 | 3.4e-21 | 1.7e-21 | 0 | 4.2e-22 | 0 | 0 | 0 | 4.2e-22 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 2.8e-18 | 0 | 0 | 6.2e-18 | 0 | 0 | 8.4e-16 | 1.4e-18 | 0 | 0 | 1.1e-18 | 0 | 6.2e-19 | 6.6e-19 | 0 | 1.3e-18 | 0 | 0 | 0 | 1.6e-18 |
| max | 2.8e-16 | 0 | 0 | 1.5e-15 | 0 | 0 | 2.1e-13 | 3.4e-16 | 0 | 0 | 2.7e-16 | 0 | 1.5e-16 | 1.6e-16 | 0 | 3.2e-16 | 0 | 0 | 0 | 3.8e-16 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
Displaying heatmap for key /plasma/general_level_boltzmann_factor in file plasma_unittest_disable_electron_scattering_False.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 4.3e-29 | 0 | 0 | 0 | 0 | 2.2e-29 | 5.4e-30 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 3.2e-27 | 0 | 0 | 0 | 0 | 1.6e-27 | 4e-28 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 3.1e-18 | 0 | 0 | 0 | 0 | 2.5e-18 | 2.4e-18 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 2.3e-16 | 0 | 0 | 0 | 0 | 1.8e-16 | 1.8e-16 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma Displaying heatmap for key /plasma/level_number_density in file plasma_unittest_disable_electron_scattering_False.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 1.9e-19 | 0 | 0 | 0 | 0 | 2.3e-20 | 2.9e-21 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 1.4e-17 | 0 | 0 | 0 | 0 | 1.7e-18 | 2.2e-19 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 3.9e-18 | 0 | 0 | 0 | 0 | 3.8e-18 | 2.6e-18 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 3e-16 | 0 | 0 | 0 | 0 | 2.9e-16 | 1.9e-16 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
Displaying heatmap for key /plasma/level_boltzmann_factor in file plasma_unittest_disable_electron_scattering_False.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 4.3e-29 | 0 | 0 | 0 | 0 | 2.2e-29 | 5.4e-30 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 3.2e-27 | 0 | 0 | 0 | 0 | 1.6e-27 | 4e-28 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 3.1e-18 | 0 | 0 | 0 | 0 | 2.5e-18 | 2.4e-18 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 2.3e-16 | 0 | 0 | 0 | 0 | 1.8e-16 | 1.8e-16 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
Significant difference detected in plasma_unittest_disable_electron_scattering_False.h5, key=/plasma/tau_sobolevs Maximum relative difference: 1.03e-14 (Versions differ by 1.03e-12%)
Displaying heatmap for key /plasma/tau_sobolevs in file plasma_unittest_disable_electron_scattering_False.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 8.8e-19 | 0 | 0 | 0 | 0 | 8.6e-20 | 4.2e-20 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 8.3e-17 | 0 | 0 | 0 | 0 | 1.1e-17 | 3.5e-18 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 3.6e-17 | 0 | 0 | 0 | 0 | 6.5e-17 | 7.3e-17 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 4.5e-15 | 0 | 0 | 0 | 0 | 4.8e-15 | 1e-14 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
Error comparing item: /plasma/dilute_planckian_radiation_field No module named 'tardis.plasma.radiation_field'
Significant difference detected in plasma_unittest_disable_electron_scattering_False.h5, key=/plasma/stimulated_emission_factor Maximum relative difference: 1.02e-14 (Versions differ by 1.02e-12%)
Displaying heatmap for key /plasma/stimulated_emission_factor in file plasma_unittest_disable_electron_scattering_False.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 6.7e-18 | 0 | 0 | 0 | 0 | 5.4e-18 | 5.8e-18 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 3.3e-16 | 0 | 0 | 0 | 0 | 3.3e-16 | 3.3e-16 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 2.7e-17 | 0 | 0 | 0 | 0 | 5.2e-17 | 7.1e-17 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 4.5e-15 | 0 | 0 | 0 | 0 | 4.4e-15 | 1e-14 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
================================================== Summary for plasma_unittest_disable_electron_scattering_False.h5: Total number of keys- in ref1: 36, in ref2: 36 Number of keys with different names in ref1 and ref2: 0 Number of keys with same name but different data in ref1 and ref2: 8 Number of totally same keys: 27 ==================================================
Significant difference detected in plasma_unittest_excitation_lte.h5, key=/plasma/transition_probabilities Maximum relative difference: 3.57e-13 (Versions differ by 3.57e-11%)
Displaying heatmap for key /plasma/transition_probabilities in file plasma_unittest_excitation_lte.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 2.3e-20 | 0 | 7.8e-19 | 1.6e-16 | 0 | 0 | 9.3e-18 | 1.5e-17 | 8.3e-19 | 0 | 2.2e-17 | 0 | 1.5e-22 | 0 | 0 | 9.6e-17 | 0 | 0 | 1.5e-16 | 9.4e-21 |
| max | 1.4e-17 | 0 | 1.1e-16 | 5.1e-14 | 0 | 0 | 2.2e-15 | 3.7e-15 | 1.1e-16 | 0 | 6.4e-15 | 0 | 1.1e-19 | 0 | 0 | 2.8e-14 | 0 | 0 | 4.9e-14 | 6.9e-18 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 1.1e-18 | 0 | 4e-17 | 1.3e-15 | 0 | 0 | 5.2e-16 | 2.7e-16 | 5.8e-17 | 0 | 8.1e-16 | 0 | 2.7e-19 | 0 | 0 | 4e-15 | 0 | 0 | 5.4e-15 | 5.8e-19 |
| max | 3.8e-16 | 0 | 7.7e-15 | 2.3e-13 | 0 | 0 | 2.1e-13 | 2.8e-14 | 1e-14 | 0 | 4.8e-14 | 0 | 2e-16 | 0 | 0 | 2.3e-13 | 0 | 0 | 3.6e-13 | 4.2e-16 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
Significant difference detected in plasma_unittest_excitation_lte.h5, key=/plasma/beta_sobolev Maximum relative difference: 3.61e-13 (Versions differ by 3.61e-11%)
Displaying heatmap for key /plasma/beta_sobolev in file plasma_unittest_excitation_lte.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 3e-17 | 9.4e-16 | 0 | 0 | 1.7e-16 | 1.6e-16 | 7.3e-17 | 0 | 2e-16 | 0 | 0 | 0 | 0 | 9.4e-16 | 0 | 0 | 1.5e-15 | 0 |
| max | 0 | 0 | 3.4e-15 | 2.3e-13 | 0 | 0 | 4.1e-14 | 2.9e-14 | 1e-14 | 0 | 4.8e-14 | 0 | 0 | 0 | 0 | 2.3e-13 | 0 | 0 | 3.6e-13 | 0 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 3e-17 | 9.4e-16 | 0 | 0 | 1.7e-16 | 1.7e-16 | 7.3e-17 | 0 | 2e-16 | 0 | 0 | 0 | 0 | 9.4e-16 | 0 | 0 | 1.5e-15 | 0 |
| max | 0 | 0 | 3.5e-15 | 2.3e-13 | 0 | 0 | 4.1e-14 | 2.9e-14 | 1e-14 | 0 | 4.8e-14 | 0 | 0 | 0 | 0 | 2.3e-13 | 0 | 0 | 3.6e-13 | 0 |
Significant difference detected in plasma_unittest_excitation_lte.h5, key=/plasma/j_blues Maximum relative difference: 2.06e-13 (Versions differ by 2.06e-11%)
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma Displaying heatmap for key /plasma/j_blues in file plasma_unittest_excitation_lte.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 1.4e-22 | 0 | 0 | 3.4e-24 | 0 | 0 | 2.7e-23 | 4.1e-23 | 0 | 0 | 2.7e-23 | 0 | 1.4e-23 | 6.9e-24 | 0 | 1.7e-24 | 0 | 0 | 0 | 1.7e-24 |
| max | 1.4e-20 | 0 | 0 | 8.5e-22 | 0 | 0 | 6.8e-21 | 1e-20 | 0 | 0 | 6.8e-21 | 0 | 3.4e-21 | 1.7e-21 | 0 | 4.2e-22 | 0 | 0 | 0 | 4.2e-22 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 2.8e-18 | 0 | 0 | 6.2e-18 | 0 | 0 | 8.4e-16 | 1.4e-18 | 0 | 0 | 1.1e-18 | 0 | 6.2e-19 | 6.6e-19 | 0 | 1.3e-18 | 0 | 0 | 0 | 1.6e-18 |
| max | 2.8e-16 | 0 | 0 | 1.5e-15 | 0 | 0 | 2.1e-13 | 3.4e-16 | 0 | 0 | 2.7e-16 | 0 | 1.5e-16 | 1.6e-16 | 0 | 3.2e-16 | 0 | 0 | 0 | 3.8e-16 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
Displaying heatmap for key /plasma/general_level_boltzmann_factor in file plasma_unittest_excitation_lte.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 4.3e-29 | 0 | 0 | 0 | 0 | 2.2e-29 | 5.4e-30 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 3.2e-27 | 0 | 0 | 0 | 0 | 1.6e-27 | 4e-28 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 3.1e-18 | 0 | 0 | 0 | 0 | 2.5e-18 | 2.4e-18 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 2.3e-16 | 0 | 0 | 0 | 0 | 1.8e-16 | 1.8e-16 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma Displaying heatmap for key /plasma/level_number_density in file plasma_unittest_excitation_lte.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 1.9e-19 | 0 | 0 | 0 | 0 | 2.3e-20 | 2.9e-21 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 1.4e-17 | 0 | 0 | 0 | 0 | 1.7e-18 | 2.2e-19 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 3.9e-18 | 0 | 0 | 0 | 0 | 3.8e-18 | 2.6e-18 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 3e-16 | 0 | 0 | 0 | 0 | 2.9e-16 | 1.9e-16 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma Displaying heatmap for key /plasma/level_boltzmann_factor in file plasma_unittest_excitation_lte.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 4.3e-29 | 0 | 0 | 0 | 0 | 2.2e-29 | 5.4e-30 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 3.2e-27 | 0 | 0 | 0 | 0 | 1.6e-27 | 4e-28 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 3.1e-18 | 0 | 0 | 0 | 0 | 2.5e-18 | 2.4e-18 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 2.3e-16 | 0 | 0 | 0 | 0 | 1.8e-16 | 1.8e-16 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
Significant difference detected in plasma_unittest_excitation_lte.h5, key=/plasma/tau_sobolevs Maximum relative difference: 1.03e-14 (Versions differ by 1.03e-12%)
Displaying heatmap for key /plasma/tau_sobolevs in file plasma_unittest_excitation_lte.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 8.8e-19 | 0 | 0 | 0 | 0 | 8.6e-20 | 4.2e-20 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 8.3e-17 | 0 | 0 | 0 | 0 | 1.1e-17 | 3.5e-18 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 3.6e-17 | 0 | 0 | 0 | 0 | 6.5e-17 | 7.3e-17 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 4.5e-15 | 0 | 0 | 0 | 0 | 4.8e-15 | 1e-14 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
Significant difference detected in plasma_unittest_excitation_lte.h5, key=/plasma/stimulated_emission_factor Maximum relative difference: 1.02e-14 (Versions differ by 1.02e-12%)
Error comparing item: /plasma/dilute_planckian_radiation_field No module named 'tardis.plasma.radiation_field' Displaying heatmap for key /plasma/stimulated_emission_factor in file plasma_unittest_excitation_lte.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 6.7e-18 | 0 | 0 | 0 | 0 | 5.4e-18 | 5.8e-18 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 3.3e-16 | 0 | 0 | 0 | 0 | 3.3e-16 | 3.3e-16 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 2.7e-17 | 0 | 0 | 0 | 0 | 5.2e-17 | 7.1e-17 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 4.5e-15 | 0 | 0 | 0 | 0 | 4.4e-15 | 1e-14 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
================================================== Summary for plasma_unittest_excitation_lte.h5: Total number of keys- in ref1: 36, in ref2: 36 Number of keys with different names in ref1 and ref2: 0 Number of keys with same name but different data in ref1 and ref2: 8 Number of totally same keys: 27 ==================================================
Significant difference detected in plasma_unittest_line_interaction_type_macroatom.h5, key=/plasma/transition_probabilities Maximum relative difference: 3.57e-13 (Versions differ by 3.57e-11%)
Displaying heatmap for key /plasma/transition_probabilities in file plasma_unittest_line_interaction_type_macroatom.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 2.3e-20 | 0 | 7.8e-19 | 1.6e-16 | 0 | 0 | 9.3e-18 | 1.5e-17 | 8.3e-19 | 0 | 2.2e-17 | 0 | 1.5e-22 | 0 | 0 | 9.6e-17 | 0 | 0 | 1.5e-16 | 9.4e-21 |
| max | 1.4e-17 | 0 | 1.1e-16 | 5.1e-14 | 0 | 0 | 2.2e-15 | 3.7e-15 | 1.1e-16 | 0 | 6.4e-15 | 0 | 1.1e-19 | 0 | 0 | 2.8e-14 | 0 | 0 | 4.9e-14 | 6.9e-18 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 1.1e-18 | 0 | 4e-17 | 1.3e-15 | 0 | 0 | 5.2e-16 | 2.7e-16 | 5.8e-17 | 0 | 8.1e-16 | 0 | 2.7e-19 | 0 | 0 | 4e-15 | 0 | 0 | 5.4e-15 | 5.8e-19 |
| max | 3.8e-16 | 0 | 7.7e-15 | 2.3e-13 | 0 | 0 | 2.1e-13 | 2.8e-14 | 1e-14 | 0 | 4.8e-14 | 0 | 2e-16 | 0 | 0 | 2.3e-13 | 0 | 0 | 3.6e-13 | 4.2e-16 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
Significant difference detected in plasma_unittest_line_interaction_type_macroatom.h5, key=/plasma/beta_sobolev Maximum relative difference: 3.61e-13 (Versions differ by 3.61e-11%)
Displaying heatmap for key /plasma/beta_sobolev in file plasma_unittest_line_interaction_type_macroatom.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 3e-17 | 9.4e-16 | 0 | 0 | 1.7e-16 | 1.6e-16 | 7.3e-17 | 0 | 2e-16 | 0 | 0 | 0 | 0 | 9.4e-16 | 0 | 0 | 1.5e-15 | 0 |
| max | 0 | 0 | 3.4e-15 | 2.3e-13 | 0 | 0 | 4.1e-14 | 2.9e-14 | 1e-14 | 0 | 4.8e-14 | 0 | 0 | 0 | 0 | 2.3e-13 | 0 | 0 | 3.6e-13 | 0 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 3e-17 | 9.4e-16 | 0 | 0 | 1.7e-16 | 1.7e-16 | 7.3e-17 | 0 | 2e-16 | 0 | 0 | 0 | 0 | 9.4e-16 | 0 | 0 | 1.5e-15 | 0 |
| max | 0 | 0 | 3.5e-15 | 2.3e-13 | 0 | 0 | 4.1e-14 | 2.9e-14 | 1e-14 | 0 | 4.8e-14 | 0 | 0 | 0 | 0 | 2.3e-13 | 0 | 0 | 3.6e-13 | 0 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
Significant difference detected in plasma_unittest_line_interaction_type_macroatom.h5, key=/plasma/j_blues Maximum relative difference: 2.06e-13 (Versions differ by 2.06e-11%)
Displaying heatmap for key /plasma/j_blues in file plasma_unittest_line_interaction_type_macroatom.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 1.4e-22 | 0 | 0 | 3.4e-24 | 0 | 0 | 2.7e-23 | 4.1e-23 | 0 | 0 | 2.7e-23 | 0 | 1.4e-23 | 6.9e-24 | 0 | 1.7e-24 | 0 | 0 | 0 | 1.7e-24 |
| max | 1.4e-20 | 0 | 0 | 8.5e-22 | 0 | 0 | 6.8e-21 | 1e-20 | 0 | 0 | 6.8e-21 | 0 | 3.4e-21 | 1.7e-21 | 0 | 4.2e-22 | 0 | 0 | 0 | 4.2e-22 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 2.8e-18 | 0 | 0 | 6.2e-18 | 0 | 0 | 8.4e-16 | 1.4e-18 | 0 | 0 | 1.1e-18 | 0 | 6.2e-19 | 6.6e-19 | 0 | 1.3e-18 | 0 | 0 | 0 | 1.6e-18 |
| max | 2.8e-16 | 0 | 0 | 1.5e-15 | 0 | 0 | 2.1e-13 | 3.4e-16 | 0 | 0 | 2.7e-16 | 0 | 1.5e-16 | 1.6e-16 | 0 | 3.2e-16 | 0 | 0 | 0 | 3.8e-16 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma Displaying heatmap for key /plasma/general_level_boltzmann_factor in file plasma_unittest_line_interaction_type_macroatom.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 4.3e-29 | 0 | 0 | 0 | 0 | 2.2e-29 | 5.4e-30 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 3.2e-27 | 0 | 0 | 0 | 0 | 1.6e-27 | 4e-28 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 3.1e-18 | 0 | 0 | 0 | 0 | 2.5e-18 | 2.4e-18 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 2.3e-16 | 0 | 0 | 0 | 0 | 1.8e-16 | 1.8e-16 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
Displaying heatmap for key /plasma/level_number_density in file plasma_unittest_line_interaction_type_macroatom.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 1.9e-19 | 0 | 0 | 0 | 0 | 2.3e-20 | 2.9e-21 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 1.4e-17 | 0 | 0 | 0 | 0 | 1.7e-18 | 2.2e-19 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 3.9e-18 | 0 | 0 | 0 | 0 | 3.8e-18 | 2.6e-18 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 3e-16 | 0 | 0 | 0 | 0 | 2.9e-16 | 1.9e-16 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma Displaying heatmap for key /plasma/level_boltzmann_factor in file plasma_unittest_line_interaction_type_macroatom.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 4.3e-29 | 0 | 0 | 0 | 0 | 2.2e-29 | 5.4e-30 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 3.2e-27 | 0 | 0 | 0 | 0 | 1.6e-27 | 4e-28 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 3.1e-18 | 0 | 0 | 0 | 0 | 2.5e-18 | 2.4e-18 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 2.3e-16 | 0 | 0 | 0 | 0 | 1.8e-16 | 1.8e-16 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Significant difference detected in plasma_unittest_line_interaction_type_macroatom.h5, key=/plasma/tau_sobolevs Maximum relative difference: 1.03e-14 (Versions differ by 1.03e-12%)
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma Displaying heatmap for key /plasma/tau_sobolevs in file plasma_unittest_line_interaction_type_macroatom.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 8.8e-19 | 0 | 0 | 0 | 0 | 8.6e-20 | 4.2e-20 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 8.3e-17 | 0 | 0 | 0 | 0 | 1.1e-17 | 3.5e-18 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 3.6e-17 | 0 | 0 | 0 | 0 | 6.5e-17 | 7.3e-17 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 4.5e-15 | 0 | 0 | 0 | 0 | 4.8e-15 | 1e-14 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
Significant difference detected in plasma_unittest_line_interaction_type_macroatom.h5, key=/plasma/stimulated_emission_factor Maximum relative difference: 1.02e-14 (Versions differ by 1.02e-12%)
Error comparing item: /plasma/dilute_planckian_radiation_field No module named 'tardis.plasma.radiation_field' Displaying heatmap for key /plasma/stimulated_emission_factor in file plasma_unittest_line_interaction_type_macroatom.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 6.7e-18 | 0 | 0 | 0 | 0 | 5.4e-18 | 5.8e-18 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 3.3e-16 | 0 | 0 | 0 | 0 | 3.3e-16 | 3.3e-16 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 2.7e-17 | 0 | 0 | 0 | 0 | 5.2e-17 | 7.1e-17 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 4.5e-15 | 0 | 0 | 0 | 0 | 4.4e-15 | 1e-14 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
==================================================
Summary for plasma_unittest_line_interaction_type_macroatom.h5: Total number of keys- in ref1: 36, in ref2: 36 Number of keys with different names in ref1 and ref2: 0 Number of keys with same name but different data in ref1 and ref2: 8 Number of totally same keys: 27 ==================================================
Significant difference detected in plasma_unittest_radiative_rates_type_detailed_w_epsilon_1e-10.h5, key=/plasma/transition_probabilities Maximum relative difference: 3.57e-13 (Versions differ by 3.57e-11%)
Displaying heatmap for key /plasma/transition_probabilities in file plasma_unittest_radiative_rates_type_detailed_w_epsilon_1e-10.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 2.3e-20 | 0 | 7.8e-19 | 1.6e-16 | 0 | 0 | 9.3e-18 | 1.5e-17 | 8.3e-19 | 0 | 2.2e-17 | 0 | 1.5e-22 | 0 | 0 | 9.6e-17 | 0 | 0 | 1.5e-16 | 9.4e-21 |
| max | 1.4e-17 | 0 | 1.1e-16 | 5.1e-14 | 0 | 0 | 2.2e-15 | 3.7e-15 | 1.1e-16 | 0 | 6.4e-15 | 0 | 1.1e-19 | 0 | 0 | 2.8e-14 | 0 | 0 | 4.9e-14 | 6.9e-18 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 1.1e-18 | 0 | 4e-17 | 1.3e-15 | 0 | 0 | 5.2e-16 | 2.7e-16 | 5.8e-17 | 0 | 8.1e-16 | 0 | 2.7e-19 | 0 | 0 | 4e-15 | 0 | 0 | 5.4e-15 | 5.8e-19 |
| max | 3.8e-16 | 0 | 7.7e-15 | 2.3e-13 | 0 | 0 | 2.1e-13 | 2.8e-14 | 1e-14 | 0 | 4.8e-14 | 0 | 2e-16 | 0 | 0 | 2.3e-13 | 0 | 0 | 3.6e-13 | 4.2e-16 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
Significant difference detected in plasma_unittest_radiative_rates_type_detailed_w_epsilon_1e-10.h5, key=/plasma/beta_sobolev Maximum relative difference: 3.61e-13 (Versions differ by 3.61e-11%)
Displaying heatmap for key /plasma/beta_sobolev in file plasma_unittest_radiative_rates_type_detailed_w_epsilon_1e-10.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 3e-17 | 9.4e-16 | 0 | 0 | 1.7e-16 | 1.6e-16 | 7.3e-17 | 0 | 2e-16 | 0 | 0 | 0 | 0 | 9.4e-16 | 0 | 0 | 1.5e-15 | 0 |
| max | 0 | 0 | 3.4e-15 | 2.3e-13 | 0 | 0 | 4.1e-14 | 2.9e-14 | 1e-14 | 0 | 4.8e-14 | 0 | 0 | 0 | 0 | 2.3e-13 | 0 | 0 | 3.6e-13 | 0 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 3e-17 | 9.4e-16 | 0 | 0 | 1.7e-16 | 1.7e-16 | 7.3e-17 | 0 | 2e-16 | 0 | 0 | 0 | 0 | 9.4e-16 | 0 | 0 | 1.5e-15 | 0 |
| max | 0 | 0 | 3.5e-15 | 2.3e-13 | 0 | 0 | 4.1e-14 | 2.9e-14 | 1e-14 | 0 | 4.8e-14 | 0 | 0 | 0 | 0 | 2.3e-13 | 0 | 0 | 3.6e-13 | 0 |
Significant difference detected in plasma_unittest_radiative_rates_type_detailed_w_epsilon_1e-10.h5, key=/plasma/j_blues Maximum relative difference: 2.06e-13 (Versions differ by 2.06e-11%)
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma Displaying heatmap for key /plasma/j_blues in file plasma_unittest_radiative_rates_type_detailed_w_epsilon_1e-10.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 1.4e-22 | 0 | 0 | 3.4e-24 | 0 | 0 | 2.7e-23 | 4.1e-23 | 0 | 0 | 2.7e-23 | 0 | 1.4e-23 | 6.9e-24 | 0 | 1.7e-24 | 0 | 0 | 0 | 1.7e-24 |
| max | 1.4e-20 | 0 | 0 | 8.5e-22 | 0 | 0 | 6.8e-21 | 1e-20 | 0 | 0 | 6.8e-21 | 0 | 3.4e-21 | 1.7e-21 | 0 | 4.2e-22 | 0 | 0 | 0 | 4.2e-22 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 2.8e-18 | 0 | 0 | 6.2e-18 | 0 | 0 | 8.4e-16 | 1.4e-18 | 0 | 0 | 1.1e-18 | 0 | 6.2e-19 | 6.6e-19 | 0 | 1.3e-18 | 0 | 0 | 0 | 1.6e-18 |
| max | 2.8e-16 | 0 | 0 | 1.5e-15 | 0 | 0 | 2.1e-13 | 3.4e-16 | 0 | 0 | 2.7e-16 | 0 | 1.5e-16 | 1.6e-16 | 0 | 3.2e-16 | 0 | 0 | 0 | 3.8e-16 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma Displaying heatmap for key /plasma/general_level_boltzmann_factor in file plasma_unittest_radiative_rates_type_detailed_w_epsilon_1e-10.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 4.3e-29 | 0 | 0 | 0 | 0 | 2.2e-29 | 5.4e-30 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 3.2e-27 | 0 | 0 | 0 | 0 | 1.6e-27 | 4e-28 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 3.1e-18 | 0 | 0 | 0 | 0 | 2.5e-18 | 2.4e-18 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 2.3e-16 | 0 | 0 | 0 | 0 | 1.8e-16 | 1.8e-16 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
Displaying heatmap for key /plasma/level_number_density in file plasma_unittest_radiative_rates_type_detailed_w_epsilon_1e-10.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 1.9e-19 | 0 | 0 | 0 | 0 | 2.3e-20 | 2.9e-21 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 1.4e-17 | 0 | 0 | 0 | 0 | 1.7e-18 | 2.2e-19 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 3.9e-18 | 0 | 0 | 0 | 0 | 3.8e-18 | 2.6e-18 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 3e-16 | 0 | 0 | 0 | 0 | 2.9e-16 | 1.9e-16 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma Displaying heatmap for key /plasma/level_boltzmann_factor in file plasma_unittest_radiative_rates_type_detailed_w_epsilon_1e-10.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 4.3e-29 | 0 | 0 | 0 | 0 | 2.2e-29 | 5.4e-30 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 3.2e-27 | 0 | 0 | 0 | 0 | 1.6e-27 | 4e-28 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 3.1e-18 | 0 | 0 | 0 | 0 | 2.5e-18 | 2.4e-18 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 2.3e-16 | 0 | 0 | 0 | 0 | 1.8e-16 | 1.8e-16 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
Significant difference detected in plasma_unittest_radiative_rates_type_detailed_w_epsilon_1e-10.h5, key=/plasma/tau_sobolevs Maximum relative difference: 1.03e-14 (Versions differ by 1.03e-12%)
Displaying heatmap for key /plasma/tau_sobolevs in file plasma_unittest_radiative_rates_type_detailed_w_epsilon_1e-10.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 8.8e-19 | 0 | 0 | 0 | 0 | 8.6e-20 | 4.2e-20 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 8.3e-17 | 0 | 0 | 0 | 0 | 1.1e-17 | 3.5e-18 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 3.6e-17 | 0 | 0 | 0 | 0 | 6.5e-17 | 7.3e-17 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 4.5e-15 | 0 | 0 | 0 | 0 | 4.8e-15 | 1e-14 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma Error comparing item: /plasma/dilute_planckian_radiation_field No module named 'tardis.plasma.radiation_field'
Significant difference detected in plasma_unittest_radiative_rates_type_detailed_w_epsilon_1e-10.h5, key=/plasma/stimulated_emission_factor Maximum relative difference: 1.02e-14 (Versions differ by 1.02e-12%)
Displaying heatmap for key /plasma/stimulated_emission_factor in file plasma_unittest_radiative_rates_type_detailed_w_epsilon_1e-10.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 6.7e-18 | 0 | 0 | 0 | 0 | 5.4e-18 | 5.8e-18 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 3.3e-16 | 0 | 0 | 0 | 0 | 3.3e-16 | 3.3e-16 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 2.7e-17 | 0 | 0 | 0 | 0 | 5.2e-17 | 7.1e-17 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 4.5e-15 | 0 | 0 | 0 | 0 | 4.4e-15 | 1e-14 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
================================================== Summary for plasma_unittest_radiative_rates_type_detailed_w_epsilon_1e-10.h5: Total number of keys- in ref1: 36, in ref2: 36 Number of keys with different names in ref1 and ref2: 0 Number of keys with same name but different data in ref1 and ref2: 8 Number of totally same keys: 27 ==================================================
Significant difference detected in plasma_unittest_nlte_coronal_approximation.h5, key=/plasma/transition_probabilities Maximum relative difference: 3.94e-13 (Versions differ by 3.94e-11%)
Displaying heatmap for key /plasma/transition_probabilities in file plasma_unittest_nlte_coronal_approximation.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 3.4e-18 | 3.6e-18 | 2.8e-18 | 2.4e-16 | 2.9e-18 | 2.1e-18 | 1.9e-18 | 4.4e-19 | 2e-17 | 2.7e-18 | 5.3e-19 | 1.3e-18 | 8.7e-19 | 5.1e-19 | 7.1e-19 | 8e-19 | 2.6e-19 | 8.3e-19 | 1e-19 | 5.3e-19 |
| max | 3.3e-16 | 2.2e-16 | 2.2e-16 | 7.4e-14 | 2.2e-16 | 2.2e-16 | 2.2e-16 | 1.1e-16 | 6.3e-15 | 4.4e-16 | 1.1e-16 | 1.7e-16 | 1.1e-16 | 1.1e-16 | 1.1e-16 | 1.1e-16 | 1.1e-16 | 1.1e-16 | 2.4e-17 | 1.1e-16 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 5.1e-17 | 9.4e-17 | 6.7e-17 | 5.1e-15 | 8.8e-17 | 6.7e-17 | 6.6e-17 | 2.6e-17 | 4.7e-16 | 9.6e-17 | 3.1e-17 | 8.1e-17 | 4.5e-17 | 5.2e-17 | 4.2e-17 | 6.6e-17 | 2.5e-17 | 6.9e-17 | 2.7e-17 | 5e-17 |
| max | 1.9e-15 | 2.7e-15 | 2.8e-15 | 3.9e-13 | 1.5e-15 | 1.7e-15 | 2.5e-15 | 1.7e-15 | 2.8e-14 | 3.5e-15 | 1.6e-15 | 2.9e-15 | 1.7e-15 | 1.7e-15 | 1.4e-15 | 1.8e-15 | 1.7e-15 | 1.5e-15 | 2e-15 | 2e-15 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
Significant difference detected in plasma_unittest_nlte_coronal_approximation.h5, key=/plasma/beta_sobolev Maximum relative difference: 3.95e-13 (Versions differ by 3.95e-11%)
Displaying heatmap for key /plasma/beta_sobolev in file plasma_unittest_nlte_coronal_approximation.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 1.4e-17 | 2.2e-17 | 1.7e-17 | 1.6e-15 | 2e-17 | 1.3e-17 | 1e-17 | 4.5e-19 | 1.2e-16 | 2.1e-17 | 2.2e-18 | 1.6e-17 | 5.4e-18 | 6.7e-18 | 4.9e-18 | 9.9e-18 | 0 | 1.1e-17 | 0 | 5.4e-18 |
| max | 4.4e-16 | 6.7e-16 | 4.4e-16 | 4e-13 | 1e-15 | 7.8e-16 | 6.7e-16 | 1.1e-16 | 2.8e-14 | 1.4e-15 | 2.2e-16 | 1.1e-15 | 4.4e-16 | 5.6e-16 | 4.4e-16 | 8.9e-16 | 0 | 1e-15 | 0 | 4.4e-16 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 1.4e-17 | 2.2e-17 | 1.7e-17 | 1.6e-15 | 2e-17 | 1.3e-17 | 1e-17 | 4.5e-19 | 1.2e-16 | 2.1e-17 | 2.2e-18 | 1.6e-17 | 5.4e-18 | 6.7e-18 | 4.9e-18 | 9.9e-18 | 0 | 1.1e-17 | 0 | 5.4e-18 |
| max | 4.4e-16 | 6.7e-16 | 4.5e-16 | 4e-13 | 1e-15 | 7.8e-16 | 6.7e-16 | 1.1e-16 | 2.8e-14 | 1.4e-15 | 2.2e-16 | 1.1e-15 | 4.4e-16 | 5.6e-16 | 4.4e-16 | 8.9e-16 | 0 | 1e-15 | 0 | 4.4e-16 |
Significant difference detected in plasma_unittest_nlte_coronal_approximation.h5, key=/plasma/j_blues Maximum relative difference: 2.06e-13 (Versions differ by 2.06e-11%)
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma Displaying heatmap for key /plasma/j_blues in file plasma_unittest_nlte_coronal_approximation.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 1.4e-22 | 0 | 0 | 3.4e-24 | 0 | 0 | 2.7e-23 | 4.1e-23 | 0 | 0 | 2.7e-23 | 0 | 1.4e-23 | 6.9e-24 | 0 | 1.7e-24 | 0 | 0 | 0 | 1.7e-24 |
| max | 1.4e-20 | 0 | 0 | 8.5e-22 | 0 | 0 | 6.8e-21 | 1e-20 | 0 | 0 | 6.8e-21 | 0 | 3.4e-21 | 1.7e-21 | 0 | 4.2e-22 | 0 | 0 | 0 | 4.2e-22 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 2.8e-18 | 0 | 0 | 6.2e-18 | 0 | 0 | 8.4e-16 | 1.4e-18 | 0 | 0 | 1.1e-18 | 0 | 6.2e-19 | 6.6e-19 | 0 | 1.3e-18 | 0 | 0 | 0 | 1.6e-18 |
| max | 2.8e-16 | 0 | 0 | 1.5e-15 | 0 | 0 | 2.1e-13 | 3.4e-16 | 0 | 0 | 2.7e-16 | 0 | 1.5e-16 | 1.6e-16 | 0 | 3.2e-16 | 0 | 0 | 0 | 3.8e-16 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma Displaying heatmap for key /plasma/general_level_boltzmann_factor in file plasma_unittest_nlte_coronal_approximation.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 1.3e-29 | 3.5e-29 | 3.4e-29 | 3.5e-29 | 4.6e-29 | 3.5e-29 | 3.4e-29 | 6.7e-31 | 3.4e-29 | 6.9e-29 | 1.7e-29 | 4.5e-29 | 1.6e-29 | 2.3e-29 | 1.2e-29 | 3.4e-29 | 6.4e-30 | 3.4e-29 | 3.4e-31 | 1.8e-29 |
| max | 8.1e-28 | 2.4e-27 | 2.4e-27 | 2.4e-27 | 3.2e-27 | 2.4e-27 | 2.4e-27 | 5e-29 | 2.4e-27 | 4.8e-27 | 1.2e-27 | 3.2e-27 | 1.2e-27 | 1.6e-27 | 8.1e-28 | 2.4e-27 | 4e-28 | 2.4e-27 | 2.5e-29 | 1.2e-27 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 3.2e-16 | 3.8e-16 | 3e-16 | 3.6e-16 | 4.8e-16 | 3.4e-16 | 2e-16 | 2e-16 | 2.7e-16 | 8.1e-16 | 1.9e-16 | 6.1e-16 | 1.3e-16 | 2.7e-16 | 1.5e-16 | 5.9e-16 | 2.3e-16 | 4.8e-16 | 1e-16 | 4.2e-16 |
| max | 8.5e-16 | 1.2e-15 | 9e-16 | 1.2e-15 | 1.2e-15 | 9.8e-16 | 6e-16 | 9.7e-16 | 9e-16 | 1.9e-15 | 8e-16 | 1.5e-15 | 6.5e-16 | 9.7e-16 | 5.5e-16 | 1.5e-15 | 7.3e-16 | 1.1e-15 | 6.4e-16 | 1.1e-15 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
Displaying heatmap for key /plasma/level_number_density in file plasma_unittest_nlte_coronal_approximation.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 1e-19 | 1.5e-19 | 1e-19 | 1e-19 | 7.5e-20 | 3.8e-20 | 3e-20 | 3.6e-22 | 1.8e-20 | 2.5e-20 | 3.1e-21 | 1.1e-20 | 3e-21 | 3e-21 | 1.5e-21 | 2.3e-21 | 6.8e-23 | 1.5e-21 | 1.1e-23 | 4e-22 |
| max | 6.9e-18 | 1e-17 | 6.9e-18 | 6.9e-18 | 5.2e-18 | 2.6e-18 | 2.2e-18 | 2.7e-20 | 1.3e-18 | 1.7e-18 | 2.2e-19 | 7.6e-19 | 2.2e-19 | 2.2e-19 | 1.1e-19 | 1.6e-19 | 5.1e-21 | 1.1e-19 | 8.5e-22 | 2.7e-20 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 3.2e-16 | 4e-16 | 3e-16 | 3.5e-16 | 4.9e-16 | 3.4e-16 | 2e-16 | 2e-16 | 2.8e-16 | 8e-16 | 1.9e-16 | 6.1e-16 | 1.2e-16 | 2.7e-16 | 1.6e-16 | 5.8e-16 | 2.3e-16 | 4.8e-16 | 9.8e-17 | 4.2e-16 |
| max | 8.8e-16 | 1.3e-15 | 9.2e-16 | 1.2e-15 | 1.2e-15 | 9.3e-16 | 6.8e-16 | 1.1e-15 | 9.5e-16 | 2e-15 | 7.7e-16 | 1.5e-15 | 6.4e-16 | 1.1e-15 | 5.4e-16 | 1.4e-15 | 8.5e-16 | 1.3e-15 | 6.8e-16 | 1.1e-15 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma Displaying heatmap for key /plasma/level_boltzmann_factor in file plasma_unittest_nlte_coronal_approximation.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 1.3e-29 | 3.5e-29 | 3.4e-29 | 3.5e-29 | 4.6e-29 | 3.5e-29 | 3.4e-29 | 6.7e-31 | 3.4e-29 | 6.9e-29 | 1.7e-29 | 4.5e-29 | 1.6e-29 | 2.3e-29 | 1.2e-29 | 3.4e-29 | 6.4e-30 | 3.4e-29 | 3.4e-31 | 1.8e-29 |
| max | 8.1e-28 | 2.4e-27 | 2.4e-27 | 2.4e-27 | 3.2e-27 | 2.4e-27 | 2.4e-27 | 5e-29 | 2.4e-27 | 4.8e-27 | 1.2e-27 | 3.2e-27 | 1.2e-27 | 1.6e-27 | 8.1e-28 | 2.4e-27 | 4e-28 | 2.4e-27 | 2.5e-29 | 1.2e-27 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 3.2e-16 | 3.8e-16 | 3e-16 | 3.6e-16 | 4.8e-16 | 3.4e-16 | 2e-16 | 2e-16 | 2.7e-16 | 8.1e-16 | 1.9e-16 | 6.1e-16 | 1.3e-16 | 2.7e-16 | 1.5e-16 | 5.9e-16 | 2.3e-16 | 4.8e-16 | 1e-16 | 4.2e-16 |
| max | 8.5e-16 | 1.2e-15 | 9e-16 | 1.2e-15 | 1.2e-15 | 9.8e-16 | 6e-16 | 9.7e-16 | 9e-16 | 1.9e-15 | 8e-16 | 1.5e-15 | 6.5e-16 | 9.7e-16 | 5.5e-16 | 1.5e-15 | 7.3e-16 | 1.1e-15 | 6.4e-16 | 1.1e-15 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
Displaying heatmap for key /plasma/tau_sobolevs in file plasma_unittest_nlte_coronal_approximation.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 1.8e-19 | 2.4e-19 | 1.8e-19 | 1.8e-19 | 1.3e-19 | 6.7e-20 | 5.5e-20 | 2.6e-22 | 3.1e-20 | 4.4e-20 | 3.7e-21 | 1.8e-20 | 5.4e-21 | 5.5e-21 | 2.7e-21 | 4.1e-21 | 4.6e-23 | 2.6e-21 | 8e-24 | 7e-22 |
| max | 1.4e-17 | 2.1e-17 | 1.4e-17 | 1.4e-17 | 1e-17 | 5.2e-18 | 4.3e-18 | 5.4e-20 | 2.6e-18 | 3.5e-18 | 4.3e-19 | 1.5e-18 | 4.3e-19 | 4.3e-19 | 2.2e-19 | 3.3e-19 | 1e-20 | 2.2e-19 | 1.7e-21 | 5.4e-20 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 4e-16 | 4.4e-16 | 3.8e-16 | 4.3e-16 | 6.1e-16 | 3.8e-16 | 2.8e-16 | 2.1e-16 | 4.1e-16 | 7.7e-16 | 2e-16 | 6.8e-16 | 2e-16 | 3.7e-16 | 2.5e-16 | 5.7e-16 | 2.4e-16 | 5.3e-16 | 1.6e-16 | 4.2e-16 |
| max | 2.6e-15 | 3.4e-15 | 3.7e-15 | 3e-15 | 2e-15 | 1.9e-15 | 2.5e-15 | 2.4e-15 | 2.7e-15 | 4.1e-15 | 2.1e-15 | 2.9e-15 | 2.1e-15 | 2.5e-15 | 1.9e-15 | 2e-15 | 2.3e-15 | 2.2e-15 | 2.5e-15 | 3e-15 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
Error comparing item: /plasma/dilute_planckian_radiation_field No module named 'tardis.plasma.radiation_field' Displaying heatmap for key /plasma/stimulated_emission_factor in file plasma_unittest_nlte_coronal_approximation.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 1.8e-17 | 2.8e-17 | 2.5e-17 | 2.9e-17 | 2.2e-17 | 2.2e-17 | 2.2e-17 | 2.6e-17 | 2.8e-17 | 2.7e-17 | 2.3e-17 | 1.8e-17 | 2.3e-17 | 2.6e-17 | 2.4e-17 | 2.3e-17 | 2.6e-17 | 2.6e-17 | 2.8e-17 | 2.7e-17 |
| max | 4.4e-16 | 5.6e-16 | 6.7e-16 | 5.6e-16 | 3.3e-16 | 3.3e-16 | 4.4e-16 | 5.6e-16 | 5.6e-16 | 6.7e-16 | 4.4e-16 | 4.4e-16 | 5.6e-16 | 5.6e-16 | 3.3e-16 | 4.4e-16 | 4.4e-16 | 3.3e-16 | 5.6e-16 | 5.6e-16 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 6e-17 | 9.6e-17 | 7.9e-17 | 1e-16 | 7.3e-17 | 7.2e-17 | 7e-17 | 7.9e-17 | 8.9e-17 | 8.6e-17 | 7.9e-17 | 6.2e-17 | 7.5e-17 | 8.3e-17 | 7.5e-17 | 6.9e-17 | 8.3e-17 | 8.3e-17 | 8.9e-17 | 8.7e-17 |
| max | 1.8e-15 | 2.7e-15 | 2.7e-15 | 2.2e-15 | 1.5e-15 | 1.3e-15 | 1.9e-15 | 1.8e-15 | 1.9e-15 | 2.4e-15 | 1.8e-15 | 1.7e-15 | 1.7e-15 | 2.3e-15 | 1.5e-15 | 1.8e-15 | 1.5e-15 | 1.6e-15 | 2.1e-15 | 1.9e-15 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
================================================== Summary for plasma_unittest_nlte_coronal_approximation.h5: Total number of keys- in ref1: 38, in ref2: 38 Number of keys with different names in ref1 and ref2: 0 Number of keys with same name but different data in ref1 and ref2: 8 Number of totally same keys: 29 ==================================================
Significant difference detected in plasma_unittest_line_interaction_type_downbranch.h5, key=/plasma/transition_probabilities Maximum relative difference: 3.03e-13 (Versions differ by 3.03e-11%)
Displaying heatmap for key /plasma/transition_probabilities in file plasma_unittest_line_interaction_type_downbranch.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 1.8e-18 | 3.1e-16 | 0 | 0 | 3.3e-18 | 1.1e-17 | 1.3e-19 | 0 | 3.8e-18 | 0 | 0 | 0 | 0 | 1.9e-17 | 0 | 0 | 3.9e-16 | 0 |
| max | 0 | 0 | 2.2e-16 | 3.8e-14 | 0 | 0 | 3.3e-16 | 1.4e-15 | 1e-17 | 0 | 4.9e-16 | 0 | 0 | 0 | 0 | 2.4e-15 | 0 | 0 | 4.9e-14 | 0 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 3.1e-17 | 1.7e-15 | 0 | 0 | 1.8e-16 | 1.8e-16 | 7.4e-17 | 0 | 2e-16 | 0 | 0 | 0 | 0 | 9.4e-16 | 0 | 0 | 5.1e-15 | 0 |
| max | 0 | 0 | 3.6e-15 | 1.8e-13 | 0 | 0 | 4.1e-14 | 2.7e-14 | 1e-14 | 0 | 4.8e-14 | 0 | 0 | 0 | 0 | 2.3e-13 | 0 | 0 | 3e-13 | 0 |
Significant difference detected in plasma_unittest_line_interaction_type_downbranch.h5, key=/plasma/beta_sobolev Maximum relative difference: 3.61e-13 (Versions differ by 3.61e-11%)
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma Displaying heatmap for key /plasma/beta_sobolev in file plasma_unittest_line_interaction_type_downbranch.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 3e-17 | 9.4e-16 | 0 | 0 | 1.7e-16 | 1.6e-16 | 7.3e-17 | 0 | 2e-16 | 0 | 0 | 0 | 0 | 9.4e-16 | 0 | 0 | 1.5e-15 | 0 |
| max | 0 | 0 | 3.4e-15 | 2.3e-13 | 0 | 0 | 4.1e-14 | 2.9e-14 | 1e-14 | 0 | 4.8e-14 | 0 | 0 | 0 | 0 | 2.3e-13 | 0 | 0 | 3.6e-13 | 0 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 3e-17 | 9.4e-16 | 0 | 0 | 1.7e-16 | 1.7e-16 | 7.3e-17 | 0 | 2e-16 | 0 | 0 | 0 | 0 | 9.4e-16 | 0 | 0 | 1.5e-15 | 0 |
| max | 0 | 0 | 3.5e-15 | 2.3e-13 | 0 | 0 | 4.1e-14 | 2.9e-14 | 1e-14 | 0 | 4.8e-14 | 0 | 0 | 0 | 0 | 2.3e-13 | 0 | 0 | 3.6e-13 | 0 |
Significant difference detected in plasma_unittest_line_interaction_type_downbranch.h5, key=/plasma/j_blues Maximum relative difference: 2.06e-13 (Versions differ by 2.06e-11%)
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma Displaying heatmap for key /plasma/j_blues in file plasma_unittest_line_interaction_type_downbranch.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 1.4e-22 | 0 | 0 | 3.4e-24 | 0 | 0 | 2.7e-23 | 4.1e-23 | 0 | 0 | 2.7e-23 | 0 | 1.4e-23 | 6.9e-24 | 0 | 1.7e-24 | 0 | 0 | 0 | 1.7e-24 |
| max | 1.4e-20 | 0 | 0 | 8.5e-22 | 0 | 0 | 6.8e-21 | 1e-20 | 0 | 0 | 6.8e-21 | 0 | 3.4e-21 | 1.7e-21 | 0 | 4.2e-22 | 0 | 0 | 0 | 4.2e-22 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 2.8e-18 | 0 | 0 | 6.2e-18 | 0 | 0 | 8.4e-16 | 1.4e-18 | 0 | 0 | 1.1e-18 | 0 | 6.2e-19 | 6.6e-19 | 0 | 1.3e-18 | 0 | 0 | 0 | 1.6e-18 |
| max | 2.8e-16 | 0 | 0 | 1.5e-15 | 0 | 0 | 2.1e-13 | 3.4e-16 | 0 | 0 | 2.7e-16 | 0 | 1.5e-16 | 1.6e-16 | 0 | 3.2e-16 | 0 | 0 | 0 | 3.8e-16 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma Displaying heatmap for key /plasma/general_level_boltzmann_factor in file plasma_unittest_line_interaction_type_downbranch.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 4.3e-29 | 0 | 0 | 0 | 0 | 2.2e-29 | 5.4e-30 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 3.2e-27 | 0 | 0 | 0 | 0 | 1.6e-27 | 4e-28 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 3.1e-18 | 0 | 0 | 0 | 0 | 2.5e-18 | 2.4e-18 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 2.3e-16 | 0 | 0 | 0 | 0 | 1.8e-16 | 1.8e-16 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma Displaying heatmap for key /plasma/level_number_density in file plasma_unittest_line_interaction_type_downbranch.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 1.9e-19 | 0 | 0 | 0 | 0 | 2.3e-20 | 2.9e-21 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 1.4e-17 | 0 | 0 | 0 | 0 | 1.7e-18 | 2.2e-19 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 3.9e-18 | 0 | 0 | 0 | 0 | 3.8e-18 | 2.6e-18 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 3e-16 | 0 | 0 | 0 | 0 | 2.9e-16 | 1.9e-16 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma Displaying heatmap for key /plasma/level_boltzmann_factor in file plasma_unittest_line_interaction_type_downbranch.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 4.3e-29 | 0 | 0 | 0 | 0 | 2.2e-29 | 5.4e-30 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 3.2e-27 | 0 | 0 | 0 | 0 | 1.6e-27 | 4e-28 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 3.1e-18 | 0 | 0 | 0 | 0 | 2.5e-18 | 2.4e-18 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 2.3e-16 | 0 | 0 | 0 | 0 | 1.8e-16 | 1.8e-16 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
Significant difference detected in plasma_unittest_line_interaction_type_downbranch.h5, key=/plasma/tau_sobolevs Maximum relative difference: 1.03e-14 (Versions differ by 1.03e-12%)
Displaying heatmap for key /plasma/tau_sobolevs in file plasma_unittest_line_interaction_type_downbranch.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 8.8e-19 | 0 | 0 | 0 | 0 | 8.6e-20 | 4.2e-20 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 8.3e-17 | 0 | 0 | 0 | 0 | 1.1e-17 | 3.5e-18 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 3.6e-17 | 0 | 0 | 0 | 0 | 6.5e-17 | 7.3e-17 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 4.5e-15 | 0 | 0 | 0 | 0 | 4.8e-15 | 1e-14 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Significant difference detected in plasma_unittest_line_interaction_type_downbranch.h5, key=/plasma/stimulated_emission_factor Maximum relative difference: 1.02e-14 (Versions differ by 1.02e-12%)
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma Error comparing item: /plasma/dilute_planckian_radiation_field No module named 'tardis.plasma.radiation_field' Displaying heatmap for key /plasma/stimulated_emission_factor in file plasma_unittest_line_interaction_type_downbranch.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 6.7e-18 | 0 | 0 | 0 | 0 | 5.4e-18 | 5.8e-18 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 3.3e-16 | 0 | 0 | 0 | 0 | 3.3e-16 | 3.3e-16 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 2.7e-17 | 0 | 0 | 0 | 0 | 5.2e-17 | 7.1e-17 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 4.5e-15 | 0 | 0 | 0 | 0 | 4.4e-15 | 1e-14 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
================================================== Summary for plasma_unittest_line_interaction_type_downbranch.h5: Total number of keys- in ref1: 36, in ref2: 36 Number of keys with different names in ref1 and ref2: 0 Number of keys with same name but different data in ref1 and ref2: 8 Number of totally same keys: 27 ==================================================
Significant difference detected in plasma_unittest_nlte.h5, key=/plasma/transition_probabilities Maximum relative difference: 3.81e-08 (Versions differ by 3.81e-06%)
Displaying heatmap for key /plasma/transition_probabilities in file plasma_unittest_nlte.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 7.9e-11 | 1e-11 | 1.1e-11 | 8.3e-12 | 2.5e-12 | 2.4e-12 | 1.5e-12 | 1.5e-12 | 1.5e-13 | 9.7e-13 | 4.4e-14 | 2.2e-13 | 1.2e-13 | 1.3e-13 | 1.5e-13 | 2.2e-14 | 1.7e-14 | 1.6e-14 | 8.5e-16 | 2.2e-15 |
| max | 8.6e-09 | 1.2e-09 | 1.4e-09 | 1.2e-09 | 3.5e-10 | 3.4e-10 | 2.1e-10 | 2.2e-10 | 2.1e-11 | 1.4e-10 | 6.2e-12 | 3.1e-11 | 1.7e-11 | 1.8e-11 | 2.1e-11 | 3.1e-12 | 2.3e-12 | 2.2e-12 | 8.6e-14 | 3e-13 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 2e-09 | 3.1e-10 | 4.1e-10 | 3.8e-10 | 1.3e-10 | 1.5e-10 | 1e-10 | 1.2e-10 | 1.2e-11 | 8.9e-11 | 4.2e-12 | 2.3e-11 | 1.3e-11 | 1.5e-11 | 1.8e-11 | 2.8e-12 | 2.3e-12 | 2.3e-12 | 9.2e-14 | 3.3e-13 |
| max | 3.8e-08 | 5.9e-09 | 7.8e-09 | 7.2e-09 | 2.5e-09 | 2.7e-09 | 1.9e-09 | 2.2e-09 | 2.3e-10 | 1.7e-09 | 7.8e-11 | 4.3e-10 | 2.4e-10 | 2.8e-10 | 3.4e-10 | 5.3e-11 | 4.3e-11 | 4.2e-11 | 1.7e-12 | 6.1e-12 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
Significant difference detected in plasma_unittest_nlte.h5, key=/plasma/beta_sobolev Maximum relative difference: 4.15e-08 (Versions differ by 4.15e-06%)
Displaying heatmap for key /plasma/beta_sobolev in file plasma_unittest_nlte.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 3.6e-10 | 5.3e-11 | 7.3e-11 | 7.3e-11 | 2.7e-11 | 3.1e-11 | 2.3e-11 | 2.7e-11 | 2.9e-12 | 2.1e-11 | 1e-12 | 5.5e-12 | 3.2e-12 | 3.6e-12 | 4.4e-12 | 7e-13 | 5.6e-13 | 5.5e-13 | 2.3e-14 | 7.9e-14 |
| max | 1.3e-08 | 2.6e-09 | 4.2e-09 | 4.6e-09 | 1.8e-09 | 2.2e-09 | 1.6e-09 | 2e-09 | 2.1e-10 | 1.6e-09 | 7.6e-11 | 4.2e-10 | 2.4e-10 | 2.8e-10 | 3.4e-10 | 5.3e-11 | 4.3e-11 | 4.2e-11 | 1.6e-12 | 6.1e-12 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 7.1e-10 | 9.9e-11 | 1.2e-10 | 1.1e-10 | 3.6e-11 | 3.9e-11 | 2.7e-11 | 3.1e-11 | 3.2e-12 | 2.3e-11 | 1.1e-12 | 5.7e-12 | 3.3e-12 | 3.7e-12 | 4.5e-12 | 7e-13 | 5.6e-13 | 5.6e-13 | 2.3e-14 | 7.9e-14 |
| max | 4.2e-08 | 6.3e-09 | 8.2e-09 | 7.5e-09 | 2.6e-09 | 2.8e-09 | 2e-09 | 2.3e-09 | 2.4e-10 | 1.7e-09 | 8e-11 | 4.3e-10 | 2.5e-10 | 2.8e-10 | 3.5e-10 | 5.4e-11 | 4.3e-11 | 4.3e-11 | 1.6e-12 | 6.1e-12 |
Significant difference detected in plasma_unittest_nlte.h5, key=/plasma/j_blues Maximum relative difference: 2.06e-13 (Versions differ by 2.06e-11%)
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma Displaying heatmap for key /plasma/j_blues in file plasma_unittest_nlte.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 1.4e-22 | 0 | 0 | 3.4e-24 | 0 | 0 | 2.7e-23 | 4.1e-23 | 0 | 0 | 2.7e-23 | 0 | 1.4e-23 | 6.9e-24 | 0 | 1.7e-24 | 0 | 0 | 0 | 1.7e-24 |
| max | 1.4e-20 | 0 | 0 | 8.5e-22 | 0 | 0 | 6.8e-21 | 1e-20 | 0 | 0 | 6.8e-21 | 0 | 3.4e-21 | 1.7e-21 | 0 | 4.2e-22 | 0 | 0 | 0 | 4.2e-22 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 2.8e-18 | 0 | 0 | 6.2e-18 | 0 | 0 | 8.4e-16 | 1.4e-18 | 0 | 0 | 1.1e-18 | 0 | 6.2e-19 | 6.6e-19 | 0 | 1.3e-18 | 0 | 0 | 0 | 1.6e-18 |
| max | 2.8e-16 | 0 | 0 | 1.5e-15 | 0 | 0 | 2.1e-13 | 3.4e-16 | 0 | 0 | 2.7e-16 | 0 | 1.5e-16 | 1.6e-16 | 0 | 3.2e-16 | 0 | 0 | 0 | 3.8e-16 |
Significant difference detected in plasma_unittest_nlte.h5, key=/plasma/general_level_boltzmann_factor Maximum relative difference: 4.87e-08 (Versions differ by 4.87e-06%)
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma Displaying heatmap for key /plasma/general_level_boltzmann_factor in file plasma_unittest_nlte.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 2.6e-19 | 4.3e-20 | 6.5e-20 | 7.3e-20 | 3.2e-20 | 4.4e-20 | 4e-20 | 6e-20 | 8.2e-21 | 7.7e-20 | 4.8e-21 | 3.4e-20 | 2.6e-20 | 3.8e-20 | 6.1e-20 | 1.2e-20 | 1.3e-20 | 1.6e-20 | 7.6e-22 | 3.8e-21 |
| max | 1.3e-17 | 2.3e-18 | 3.6e-18 | 4.2e-18 | 1.9e-18 | 2.7e-18 | 2.4e-18 | 3.7e-18 | 5.2e-19 | 4.9e-18 | 3.1e-19 | 2.2e-18 | 1.7e-18 | 2.5e-18 | 4e-18 | 8.2e-19 | 8.6e-19 | 1.1e-18 | 5.2e-20 | 2.6e-19 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 2.2e-08 | 4e-09 | 6.5e-09 | 7.7e-09 | 3.5e-09 | 5.2e-09 | 4.9e-09 | 7.8e-09 | 1.1e-09 | 1.1e-08 | 7.1e-10 | 5.3e-09 | 4.2e-09 | 6.4e-09 | 1.1e-08 | 2.2e-09 | 2.4e-09 | 3.2e-09 | 1.6e-10 | 8.2e-10 |
| max | 4.9e-08 | 8.8e-09 | 1.4e-08 | 1.7e-08 | 7.8e-09 | 1.2e-08 | 1.1e-08 | 1.7e-08 | 2.5e-09 | 2.4e-08 | 1.6e-09 | 1.2e-08 | 9.2e-09 | 1.4e-08 | 2.4e-08 | 4.9e-09 | 5.3e-09 | 7.1e-09 | 3.5e-10 | 1.8e-09 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
Significant difference detected in plasma_unittest_nlte.h5, key=/plasma/level_number_density Maximum relative difference: 4.87e-08 (Versions differ by 4.87e-06%)
Displaying heatmap for key /plasma/level_number_density in file plasma_unittest_nlte.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 1.7e-09 | 2e-10 | 2.2e-10 | 1.8e-10 | 5.5e-11 | 5.7e-11 | 3.7e-11 | 4.1e-11 | 4.2e-12 | 2.9e-11 | 1.3e-12 | 7.2e-12 | 4.1e-12 | 4.6e-12 | 5.5e-12 | 8.5e-13 | 6.7e-13 | 6.6e-13 | 2.4e-14 | 9.3e-14 |
| max | 8.8e-08 | 1.1e-08 | 1.2e-08 | 1e-08 | 3.3e-09 | 3.4e-09 | 2.3e-09 | 2.6e-09 | 2.6e-10 | 1.9e-09 | 8.7e-11 | 4.7e-10 | 2.7e-10 | 3e-10 | 3.7e-10 | 5.7e-11 | 4.6e-11 | 4.5e-11 | 1.6e-12 | 6.4e-12 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 2.2e-08 | 4e-09 | 6.5e-09 | 7.7e-09 | 3.5e-09 | 5.2e-09 | 4.9e-09 | 7.8e-09 | 1.1e-09 | 1.1e-08 | 7.1e-10 | 5.3e-09 | 4.2e-09 | 6.4e-09 | 1.1e-08 | 2.2e-09 | 2.4e-09 | 3.2e-09 | 1.6e-10 | 8.2e-10 |
| max | 4.9e-08 | 8.8e-09 | 1.4e-08 | 1.7e-08 | 7.8e-09 | 1.2e-08 | 1.1e-08 | 1.7e-08 | 2.5e-09 | 2.4e-08 | 1.6e-09 | 1.2e-08 | 9.2e-09 | 1.4e-08 | 2.4e-08 | 4.9e-09 | 5.3e-09 | 7.1e-09 | 3.5e-10 | 1.8e-09 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
Significant difference detected in plasma_unittest_nlte.h5, key=/plasma/level_boltzmann_factor Maximum relative difference: 4.87e-08 (Versions differ by 4.87e-06%)
Displaying heatmap for key /plasma/level_boltzmann_factor in file plasma_unittest_nlte.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 2.6e-19 | 4.3e-20 | 6.5e-20 | 7.3e-20 | 3.2e-20 | 4.4e-20 | 4e-20 | 6e-20 | 8.2e-21 | 7.7e-20 | 4.8e-21 | 3.4e-20 | 2.6e-20 | 3.8e-20 | 6.1e-20 | 1.2e-20 | 1.3e-20 | 1.6e-20 | 7.6e-22 | 3.8e-21 |
| max | 1.3e-17 | 2.3e-18 | 3.6e-18 | 4.2e-18 | 1.9e-18 | 2.7e-18 | 2.4e-18 | 3.7e-18 | 5.2e-19 | 4.9e-18 | 3.1e-19 | 2.2e-18 | 1.7e-18 | 2.5e-18 | 4e-18 | 8.2e-19 | 8.6e-19 | 1.1e-18 | 5.2e-20 | 2.6e-19 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 2.2e-08 | 4e-09 | 6.5e-09 | 7.7e-09 | 3.5e-09 | 5.2e-09 | 4.9e-09 | 7.8e-09 | 1.1e-09 | 1.1e-08 | 7.1e-10 | 5.3e-09 | 4.2e-09 | 6.4e-09 | 1.1e-08 | 2.2e-09 | 2.4e-09 | 3.2e-09 | 1.6e-10 | 8.2e-10 |
| max | 4.9e-08 | 8.8e-09 | 1.4e-08 | 1.7e-08 | 7.8e-09 | 1.2e-08 | 1.1e-08 | 1.7e-08 | 2.5e-09 | 2.4e-08 | 1.6e-09 | 1.2e-08 | 9.2e-09 | 1.4e-08 | 2.4e-08 | 4.9e-09 | 5.3e-09 | 7.1e-09 | 3.5e-10 | 1.8e-09 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
Significant difference detected in plasma_unittest_nlte.h5, key=/plasma/tau_sobolevs Maximum relative difference: 4.87e-08 (Versions differ by 4.87e-06%)
Displaying heatmap for key /plasma/tau_sobolevs in file plasma_unittest_nlte.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 2.3e-09 | 2.8e-10 | 3.1e-10 | 2.5e-10 | 8.2e-11 | 8.5e-11 | 5.7e-11 | 6.4e-11 | 6.6e-12 | 4.6e-11 | 2.2e-12 | 1.2e-11 | 6.6e-12 | 7.5e-12 | 9.1e-12 | 1.4e-12 | 1.1e-12 | 1.1e-12 | 4e-14 | 1.6e-13 |
| max | 1.5e-07 | 1.9e-08 | 2.2e-08 | 1.8e-08 | 5.9e-09 | 6.2e-09 | 4.2e-09 | 4.7e-09 | 4.9e-10 | 3.5e-09 | 1.6e-10 | 8.8e-10 | 5e-10 | 5.7e-10 | 6.9e-10 | 1.1e-10 | 8.7e-11 | 8.6e-11 | 3.1e-12 | 1.2e-11 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 2.8e-08 | 5e-09 | 8.2e-09 | 9.4e-09 | 4.3e-09 | 6.4e-09 | 6.1e-09 | 9.6e-09 | 1.4e-09 | 1.3e-08 | 8.6e-10 | 6.4e-09 | 5e-09 | 7.8e-09 | 1.3e-08 | 2.7e-09 | 2.9e-09 | 3.9e-09 | 1.9e-10 | 9.9e-10 |
| max | 4.9e-08 | 8.8e-09 | 1.4e-08 | 1.7e-08 | 7.8e-09 | 1.2e-08 | 1.1e-08 | 1.7e-08 | 2.5e-09 | 2.4e-08 | 1.6e-09 | 1.2e-08 | 9.2e-09 | 1.4e-08 | 2.4e-08 | 4.9e-09 | 5.3e-09 | 7.1e-09 | 3.5e-10 | 1.8e-09 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
Significant difference detected in plasma_unittest_nlte.h5, key=/plasma/stimulated_emission_factor Maximum relative difference: 5.67e-14 (Versions differ by 5.67e-12%)
Error comparing item: /plasma/dilute_planckian_radiation_field No module named 'tardis.plasma.radiation_field' Displaying heatmap for key /plasma/stimulated_emission_factor in file plasma_unittest_nlte.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 5.3e-17 | 4.9e-17 | 5e-17 | 4e-17 | 3.8e-17 | 3.2e-17 | 3.6e-17 | 2.7e-17 | 2.4e-17 | 3.1e-17 | 1.8e-17 | 2.2e-17 | 1.5e-17 | 2.4e-17 | 3.1e-17 | 1.4e-17 | 1.3e-17 | 1.6e-17 | 1.4e-17 | 1.1e-17 |
| max | 4.4e-16 | 5.6e-16 | 7.8e-16 | 4.4e-16 | 5.6e-16 | 4.4e-16 | 3.3e-16 | 4.4e-16 | 5.6e-16 | 7.8e-16 | 3.3e-16 | 5.6e-16 | 2.2e-16 | 4.4e-16 | 1.1e-15 | 3.3e-16 | 5.6e-16 | 3.3e-16 | 3.3e-16 | 5.6e-16 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 1.3e-16 | 1.5e-16 | 3.5e-16 | 8.5e-17 | 9.4e-17 | 7.6e-17 | 1.1e-16 | 8.5e-17 | 1.6e-16 | 6.5e-17 | 3.5e-17 | 5.5e-17 | 3.2e-17 | 6.3e-17 | 1.1e-16 | 5.1e-17 | 5.4e-17 | 8.6e-17 | 9e-17 | 3.5e-16 |
| max | 2.3e-15 | 3.3e-15 | 1.8e-14 | 1.9e-15 | 2.7e-15 | 2e-15 | 6.9e-15 | 3.3e-15 | 8.9e-15 | 3.2e-15 | 1.2e-15 | 2.9e-15 | 1.1e-15 | 3e-15 | 9e-15 | 3.2e-15 | 6.7e-15 | 5.2e-15 | 8.7e-15 | 5.7e-14 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
================================================== Summary for plasma_unittest_nlte.h5: Total number of keys- in ref1: 38, in ref2: 38 Number of keys with different names in ref1 and ref2: 0 Number of keys with same name but different data in ref1 and ref2: 8 Number of totally same keys: 29 ==================================================
Significant difference detected in plasma_unittest_radiative_rates_type_dilute-blackbody.h5, key=/plasma/transition_probabilities Maximum relative difference: 3.57e-13 (Versions differ by 3.57e-11%)
Displaying heatmap for key /plasma/transition_probabilities in file plasma_unittest_radiative_rates_type_dilute-blackbody.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 2.3e-20 | 0 | 7.8e-19 | 1.6e-16 | 0 | 0 | 9.3e-18 | 1.5e-17 | 8.3e-19 | 0 | 2.2e-17 | 0 | 1.5e-22 | 0 | 0 | 9.6e-17 | 0 | 0 | 1.5e-16 | 9.4e-21 |
| max | 1.4e-17 | 0 | 1.1e-16 | 5.1e-14 | 0 | 0 | 2.2e-15 | 3.7e-15 | 1.1e-16 | 0 | 6.4e-15 | 0 | 1.1e-19 | 0 | 0 | 2.8e-14 | 0 | 0 | 4.9e-14 | 6.9e-18 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 1.1e-18 | 0 | 4e-17 | 1.3e-15 | 0 | 0 | 5.2e-16 | 2.7e-16 | 5.8e-17 | 0 | 8.1e-16 | 0 | 2.7e-19 | 0 | 0 | 4e-15 | 0 | 0 | 5.4e-15 | 5.8e-19 |
| max | 3.8e-16 | 0 | 7.7e-15 | 2.3e-13 | 0 | 0 | 2.1e-13 | 2.8e-14 | 1e-14 | 0 | 4.8e-14 | 0 | 2e-16 | 0 | 0 | 2.3e-13 | 0 | 0 | 3.6e-13 | 4.2e-16 |
Significant difference detected in plasma_unittest_radiative_rates_type_dilute-blackbody.h5, key=/plasma/beta_sobolev Maximum relative difference: 3.61e-13 (Versions differ by 3.61e-11%)
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma Displaying heatmap for key /plasma/beta_sobolev in file plasma_unittest_radiative_rates_type_dilute-blackbody.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 3e-17 | 9.4e-16 | 0 | 0 | 1.7e-16 | 1.6e-16 | 7.3e-17 | 0 | 2e-16 | 0 | 0 | 0 | 0 | 9.4e-16 | 0 | 0 | 1.5e-15 | 0 |
| max | 0 | 0 | 3.4e-15 | 2.3e-13 | 0 | 0 | 4.1e-14 | 2.9e-14 | 1e-14 | 0 | 4.8e-14 | 0 | 0 | 0 | 0 | 2.3e-13 | 0 | 0 | 3.6e-13 | 0 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 3e-17 | 9.4e-16 | 0 | 0 | 1.7e-16 | 1.7e-16 | 7.3e-17 | 0 | 2e-16 | 0 | 0 | 0 | 0 | 9.4e-16 | 0 | 0 | 1.5e-15 | 0 |
| max | 0 | 0 | 3.5e-15 | 2.3e-13 | 0 | 0 | 4.1e-14 | 2.9e-14 | 1e-14 | 0 | 4.8e-14 | 0 | 0 | 0 | 0 | 2.3e-13 | 0 | 0 | 3.6e-13 | 0 |
Significant difference detected in plasma_unittest_radiative_rates_type_dilute-blackbody.h5, key=/plasma/j_blues Maximum relative difference: 2.06e-13 (Versions differ by 2.06e-11%)
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma Displaying heatmap for key /plasma/j_blues in file plasma_unittest_radiative_rates_type_dilute-blackbody.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 1.4e-22 | 0 | 0 | 3.4e-24 | 0 | 0 | 2.7e-23 | 4.1e-23 | 0 | 0 | 2.7e-23 | 0 | 1.4e-23 | 6.9e-24 | 0 | 1.7e-24 | 0 | 0 | 0 | 1.7e-24 |
| max | 1.4e-20 | 0 | 0 | 8.5e-22 | 0 | 0 | 6.8e-21 | 1e-20 | 0 | 0 | 6.8e-21 | 0 | 3.4e-21 | 1.7e-21 | 0 | 4.2e-22 | 0 | 0 | 0 | 4.2e-22 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 2.8e-18 | 0 | 0 | 6.2e-18 | 0 | 0 | 8.4e-16 | 1.4e-18 | 0 | 0 | 1.1e-18 | 0 | 6.2e-19 | 6.6e-19 | 0 | 1.3e-18 | 0 | 0 | 0 | 1.6e-18 |
| max | 2.8e-16 | 0 | 0 | 1.5e-15 | 0 | 0 | 2.1e-13 | 3.4e-16 | 0 | 0 | 2.7e-16 | 0 | 1.5e-16 | 1.6e-16 | 0 | 3.2e-16 | 0 | 0 | 0 | 3.8e-16 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
Displaying heatmap for key /plasma/general_level_boltzmann_factor in file plasma_unittest_radiative_rates_type_dilute-blackbody.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 4.3e-29 | 0 | 0 | 0 | 0 | 2.2e-29 | 5.4e-30 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 3.2e-27 | 0 | 0 | 0 | 0 | 1.6e-27 | 4e-28 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 3.1e-18 | 0 | 0 | 0 | 0 | 2.5e-18 | 2.4e-18 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 2.3e-16 | 0 | 0 | 0 | 0 | 1.8e-16 | 1.8e-16 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma Displaying heatmap for key /plasma/level_number_density in file plasma_unittest_radiative_rates_type_dilute-blackbody.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 1.9e-19 | 0 | 0 | 0 | 0 | 2.3e-20 | 2.9e-21 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 1.4e-17 | 0 | 0 | 0 | 0 | 1.7e-18 | 2.2e-19 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 3.9e-18 | 0 | 0 | 0 | 0 | 3.8e-18 | 2.6e-18 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 3e-16 | 0 | 0 | 0 | 0 | 2.9e-16 | 1.9e-16 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma Displaying heatmap for key /plasma/level_boltzmann_factor in file plasma_unittest_radiative_rates_type_dilute-blackbody.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 4.3e-29 | 0 | 0 | 0 | 0 | 2.2e-29 | 5.4e-30 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 3.2e-27 | 0 | 0 | 0 | 0 | 1.6e-27 | 4e-28 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 3.1e-18 | 0 | 0 | 0 | 0 | 2.5e-18 | 2.4e-18 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 2.3e-16 | 0 | 0 | 0 | 0 | 1.8e-16 | 1.8e-16 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Significant difference detected in plasma_unittest_radiative_rates_type_dilute-blackbody.h5, key=/plasma/tau_sobolevs Maximum relative difference: 1.03e-14 (Versions differ by 1.03e-12%)
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma Displaying heatmap for key /plasma/tau_sobolevs in file plasma_unittest_radiative_rates_type_dilute-blackbody.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 8.8e-19 | 0 | 0 | 0 | 0 | 8.6e-20 | 4.2e-20 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 8.3e-17 | 0 | 0 | 0 | 0 | 1.1e-17 | 3.5e-18 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 3.6e-17 | 0 | 0 | 0 | 0 | 6.5e-17 | 7.3e-17 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 4.5e-15 | 0 | 0 | 0 | 0 | 4.8e-15 | 1e-14 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma Error comparing item: /plasma/dilute_planckian_radiation_field No module named 'tardis.plasma.radiation_field'
Significant difference detected in plasma_unittest_radiative_rates_type_dilute-blackbody.h5, key=/plasma/stimulated_emission_factor Maximum relative difference: 1.02e-14 (Versions differ by 1.02e-12%)
Displaying heatmap for key /plasma/stimulated_emission_factor in file plasma_unittest_radiative_rates_type_dilute-blackbody.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 6.7e-18 | 0 | 0 | 0 | 0 | 5.4e-18 | 5.8e-18 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 3.3e-16 | 0 | 0 | 0 | 0 | 3.3e-16 | 3.3e-16 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 2.7e-17 | 0 | 0 | 0 | 0 | 5.2e-17 | 7.1e-17 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 4.5e-15 | 0 | 0 | 0 | 0 | 4.4e-15 | 1e-14 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
================================================== Summary for plasma_unittest_radiative_rates_type_dilute-blackbody.h5: Total number of keys- in ref1: 36, in ref2: 36 Number of keys with different names in ref1 and ref2: 0 Number of keys with same name but different data in ref1 and ref2: 8 Number of totally same keys: 27 ==================================================
Significant difference detected in plasma_unittest_ionization_lte.h5, key=/plasma/transition_probabilities Maximum relative difference: 3.57e-13 (Versions differ by 3.57e-11%)
Displaying heatmap for key /plasma/transition_probabilities in file plasma_unittest_ionization_lte.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 2.3e-20 | 0 | 7.8e-19 | 1.6e-16 | 0 | 0 | 9.3e-18 | 1.5e-17 | 8.3e-19 | 0 | 2.2e-17 | 0 | 1.5e-22 | 0 | 0 | 9.6e-17 | 0 | 0 | 1.5e-16 | 9.4e-21 |
| max | 1.4e-17 | 0 | 1.1e-16 | 5.1e-14 | 0 | 0 | 2.2e-15 | 3.7e-15 | 1.1e-16 | 0 | 6.4e-15 | 0 | 1.1e-19 | 0 | 0 | 2.8e-14 | 0 | 0 | 4.9e-14 | 6.9e-18 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 1.1e-18 | 0 | 4e-17 | 1.3e-15 | 0 | 0 | 5.2e-16 | 2.7e-16 | 5.8e-17 | 0 | 8.1e-16 | 0 | 2.7e-19 | 0 | 0 | 4e-15 | 0 | 0 | 5.4e-15 | 5.8e-19 |
| max | 3.8e-16 | 0 | 7.7e-15 | 2.3e-13 | 0 | 0 | 2.1e-13 | 2.8e-14 | 1e-14 | 0 | 4.8e-14 | 0 | 2e-16 | 0 | 0 | 2.3e-13 | 0 | 0 | 3.6e-13 | 4.2e-16 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
Significant difference detected in plasma_unittest_ionization_lte.h5, key=/plasma/beta_sobolev Maximum relative difference: 3.61e-13 (Versions differ by 3.61e-11%)
Displaying heatmap for key /plasma/beta_sobolev in file plasma_unittest_ionization_lte.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 3e-17 | 9.4e-16 | 0 | 0 | 1.7e-16 | 1.6e-16 | 7.3e-17 | 0 | 2e-16 | 0 | 0 | 0 | 0 | 9.4e-16 | 0 | 0 | 1.5e-15 | 0 |
| max | 0 | 0 | 3.4e-15 | 2.3e-13 | 0 | 0 | 4.1e-14 | 2.9e-14 | 1e-14 | 0 | 4.8e-14 | 0 | 0 | 0 | 0 | 2.3e-13 | 0 | 0 | 3.6e-13 | 0 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 3e-17 | 9.4e-16 | 0 | 0 | 1.7e-16 | 1.7e-16 | 7.3e-17 | 0 | 2e-16 | 0 | 0 | 0 | 0 | 9.4e-16 | 0 | 0 | 1.5e-15 | 0 |
| max | 0 | 0 | 3.5e-15 | 2.3e-13 | 0 | 0 | 4.1e-14 | 2.9e-14 | 1e-14 | 0 | 4.8e-14 | 0 | 0 | 0 | 0 | 2.3e-13 | 0 | 0 | 3.6e-13 | 0 |
Significant difference detected in plasma_unittest_ionization_lte.h5, key=/plasma/j_blues Maximum relative difference: 2.06e-13 (Versions differ by 2.06e-11%)
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma Displaying heatmap for key /plasma/j_blues in file plasma_unittest_ionization_lte.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 1.4e-22 | 0 | 0 | 3.4e-24 | 0 | 0 | 2.7e-23 | 4.1e-23 | 0 | 0 | 2.7e-23 | 0 | 1.4e-23 | 6.9e-24 | 0 | 1.7e-24 | 0 | 0 | 0 | 1.7e-24 |
| max | 1.4e-20 | 0 | 0 | 8.5e-22 | 0 | 0 | 6.8e-21 | 1e-20 | 0 | 0 | 6.8e-21 | 0 | 3.4e-21 | 1.7e-21 | 0 | 4.2e-22 | 0 | 0 | 0 | 4.2e-22 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 2.8e-18 | 0 | 0 | 6.2e-18 | 0 | 0 | 8.4e-16 | 1.4e-18 | 0 | 0 | 1.1e-18 | 0 | 6.2e-19 | 6.6e-19 | 0 | 1.3e-18 | 0 | 0 | 0 | 1.6e-18 |
| max | 2.8e-16 | 0 | 0 | 1.5e-15 | 0 | 0 | 2.1e-13 | 3.4e-16 | 0 | 0 | 2.7e-16 | 0 | 1.5e-16 | 1.6e-16 | 0 | 3.2e-16 | 0 | 0 | 0 | 3.8e-16 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
Displaying heatmap for key /plasma/general_level_boltzmann_factor in file plasma_unittest_ionization_lte.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 4.3e-29 | 0 | 0 | 0 | 0 | 2.2e-29 | 5.4e-30 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 3.2e-27 | 0 | 0 | 0 | 0 | 1.6e-27 | 4e-28 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 3.1e-18 | 0 | 0 | 0 | 0 | 2.5e-18 | 2.4e-18 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 2.3e-16 | 0 | 0 | 0 | 0 | 1.8e-16 | 1.8e-16 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
Displaying heatmap for key /plasma/level_number_density in file plasma_unittest_ionization_lte.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 1.9e-19 | 0 | 0 | 0 | 0 | 2.3e-20 | 2.9e-21 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 1.4e-17 | 0 | 0 | 0 | 0 | 1.7e-18 | 2.2e-19 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 3.9e-18 | 0 | 0 | 0 | 0 | 3.8e-18 | 2.6e-18 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 3e-16 | 0 | 0 | 0 | 0 | 2.9e-16 | 1.9e-16 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma Displaying heatmap for key /plasma/level_boltzmann_factor in file plasma_unittest_ionization_lte.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 4.3e-29 | 0 | 0 | 0 | 0 | 2.2e-29 | 5.4e-30 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 3.2e-27 | 0 | 0 | 0 | 0 | 1.6e-27 | 4e-28 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 3.1e-18 | 0 | 0 | 0 | 0 | 2.5e-18 | 2.4e-18 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 2.3e-16 | 0 | 0 | 0 | 0 | 1.8e-16 | 1.8e-16 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
Significant difference detected in plasma_unittest_ionization_lte.h5, key=/plasma/tau_sobolevs Maximum relative difference: 1.03e-14 (Versions differ by 1.03e-12%)
Displaying heatmap for key /plasma/tau_sobolevs in file plasma_unittest_ionization_lte.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 8.8e-19 | 0 | 0 | 0 | 0 | 8.6e-20 | 4.2e-20 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 8.3e-17 | 0 | 0 | 0 | 0 | 1.1e-17 | 3.5e-18 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 3.6e-17 | 0 | 0 | 0 | 0 | 6.5e-17 | 7.3e-17 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 4.5e-15 | 0 | 0 | 0 | 0 | 4.8e-15 | 1e-14 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
Error comparing item: /plasma/dilute_planckian_radiation_field
Significant difference detected in plasma_unittest_ionization_lte.h5, key=/plasma/stimulated_emission_factor Maximum relative difference: 1.02e-14 (Versions differ by 1.02e-12%)
No module named 'tardis.plasma.radiation_field' Displaying heatmap for key /plasma/stimulated_emission_factor in file plasma_unittest_ionization_lte.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 6.7e-18 | 0 | 0 | 0 | 0 | 5.4e-18 | 5.8e-18 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 3.3e-16 | 0 | 0 | 0 | 0 | 3.3e-16 | 3.3e-16 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 2.7e-17 | 0 | 0 | 0 | 0 | 5.2e-17 | 7.1e-17 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 4.5e-15 | 0 | 0 | 0 | 0 | 4.4e-15 | 1e-14 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/plasma/tests/test_complete_plasmas/test_plasma Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/plasma/tests/test_complete_plasmas/test_plasma
==================================================
Summary for plasma_unittest_ionization_lte.h5: Total number of keys- in ref1: 36, in ref2: 36 Number of keys with different names in ref1 and ref2: 0 Number of keys with same name but different data in ref1 and ref2: 8 Number of totally same keys: 27 ==================================================
Displaying heatmap for key /data in file test_solve__collisional_rate_solver0-radiative_transitions0__.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 7.7e-18 | 7.7e-18 | 2.3e-25 | 2.3e-25 | 7.7e-18 | 7.1e-25 | 9.1e-25 | 2.3e-25 | 4.6e-25 | 2.3e-25 | 5.6e-29 | 7.7e-18 | 7.7e-18 | 2.3e-25 | 4.8e-25 | 2.3e-25 | 1.5e-17 | 5.1e-25 | 7.7e-18 | 2.3e-25 |
| max | 1.1e-16 | 1.1e-16 | 6.6e-24 | 6.6e-24 | 1.1e-16 | 1.3e-23 | 2e-23 | 6.6e-24 | 1.3e-23 | 6.6e-24 | 1.6e-27 | 1.1e-16 | 1.1e-16 | 6.6e-24 | 6.6e-24 | 6.6e-24 | 2.2e-16 | 6.6e-24 | 1.1e-16 | 6.6e-24 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 1.2e-16 | 1.7e-16 | 1e-16 | 1.1e-16 | 1.3e-16 | 1.2e-16 | 1e-16 | 1.1e-16 | 1.3e-16 | 9.3e-17 | 8.8e-17 | 1.4e-16 | 1.1e-16 | 9.5e-17 | 1e-16 | 9.7e-17 | 2e-16 | 1.4e-16 | 1.2e-16 | 1.1e-16 |
| max | 3.2e-16 | 6.2e-16 | 3.9e-16 | 4.2e-16 | 4.9e-16 | 3.5e-16 | 3.5e-16 | 4.4e-16 | 6.4e-16 | 4.8e-16 | 3.2e-16 | 5.1e-16 | 3.4e-16 | 3.5e-16 | 3.8e-16 | 3.5e-16 | 6.5e-16 | 4.3e-16 | 3.9e-16 | 4.2e-16 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/plasma/equilibrium/tests/test_level_populations/test_level_population_solver Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/plasma/equilibrium/tests/test_level_populations/test_level_population_solver ================================================== Summary for test_solve__collisional_rate_solver0-radiative_transitions0__.h5: Total number of keys- in ref1: 1, in ref2: 1 Number of keys with different names in ref1 and ref2: 0 Number of keys with same name but different data in ref1 and ref2: 1 Number of totally same keys: 0 ==================================================
Error comparing item: /data loop of ufunc does not support argument 0 of type numpy.ndarray which has no callable fabs method ================================================== Summary for test_rate_matrix_solver__collisional_rate_solver0-radiative_transitions0__.h5: Total number of keys- in ref1: 1, in ref2: 1 Number of keys with different names in ref1 and ref2: 0 Number of keys with same name but different data in ref1 and ref2: 1 Number of totally same keys: 0 ==================================================
Error comparing item: /simulation/plasma/yg_interp unsupported operand type(s) for -: 'PchipInterpolator' and 'PchipInterpolator'
Error comparing item: /simulation/plasma/dilute_planckian_radiation_field No module named 'tardis.plasma.radiation_field'
================================================== Summary for test_montecarlo_continuum.h5: Total number of keys- in ref1: 148, in ref2: 148 Number of keys with different names in ref1 and ref2: 0 Number of keys with same name but different data in ref1 and ref2: 1 Number of totally same keys: 146 ================================================== Displaying heatmap for key /simulation/plasma/level_number_density in file test_montecarlo_main_loop.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 9.6e-26 | 5e-25 | 3.2e-24 | 1.4e-23 | 3.8e-28 | 6.1e-24 | 9.5e-26 | 1.1e-25 | 3.5e-21 | 1.8e-25 | 1.6e-24 | 4.8e-26 | 1.9e-26 | 1.9e-28 | 9.7e-26 | 1.9e-25 | 7.8e-22 | 7.3e-31 | 8.6e-25 | 6.4e-27 |
| max | 4.2e-22 | 1.7e-21 | 1.4e-20 | 2.7e-20 | 1.7e-24 | 2.7e-20 | 4.2e-22 | 4.2e-22 | 1.4e-17 | 4.2e-22 | 6.8e-21 | 1.1e-22 | 5.3e-23 | 8.3e-25 | 4.2e-22 | 8.5e-22 | 3.5e-18 | 3.2e-27 | 3.4e-21 | 2.6e-23 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 1.8e-19 | 4.4e-19 | 2.5e-19 | 6.6e-19 | 1.9e-19 | 2.5e-19 | 1.6e-19 | 3e-19 | 3.4e-19 | 3.7e-19 | 4.2e-19 | 4e-19 | 2.9e-19 | 2.4e-19 | 4e-19 | 1.7e-19 | 4.6e-19 | 1.9e-19 | 3.8e-19 | 1.4e-19 |
| max | 2.2e-16 | 4e-16 | 2.2e-16 | 4.2e-16 | 2.3e-16 | 3e-16 | 2.4e-16 | 3.1e-16 | 2.1e-16 | 2.4e-16 | 3.4e-16 | 3.9e-16 | 2.3e-16 | 3.1e-16 | 3e-16 | 3e-16 | 2.9e-16 | 2.5e-16 | 3e-16 | 1.5e-16 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/transport/montecarlo/tests/test_montecarlo_main_loop Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/transport/montecarlo/tests/test_montecarlo_main_loop
Significant difference detected in test_montecarlo_main_loop.h5, key=/simulation/transport/transport_state/j_blue_estimator Maximum relative difference: 1.03e-14 (Versions differ by 1.03e-12%)
Displaying heatmap for key /simulation/transport/transport_state/j_blue_estimator in file test_montecarlo_main_loop.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 3.9e-36 | 9.2e-36 | 1.1e-35 | 1.1e-35 | 1.1e-35 | 1.1e-35 | 1.1e-35 | 1e-35 | 1.1e-35 | 1.2e-35 | 1e-35 | 1e-35 | 1.1e-35 | 1e-35 | 1e-35 | 1.1e-35 | 1.1e-35 | 1.1e-35 | 1e-35 | 1.1e-35 |
| max | 1.5e-33 | 7.7e-34 | 7.7e-34 | 7.7e-34 | 7.7e-34 | 1.2e-33 | 7.7e-34 | 7.7e-34 | 7.7e-34 | 7.7e-34 | 7.7e-34 | 7.7e-34 | 7.7e-34 | 3.9e-34 | 7.7e-34 | 7.7e-34 | 3.9e-34 | 3.9e-34 | 7.7e-34 | 3.9e-34 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 2.9e-18 | 9e-18 | 1.1e-17 | 1.3e-17 | 1.4e-17 | 1.6e-17 | 1.7e-17 | 1.6e-17 | 1.8e-17 | 2e-17 | 1.8e-17 | 1.9e-17 | 2.1e-17 | 2e-17 | 2.1e-17 | 2.4e-17 | 2.5e-17 | 2.3e-17 | 2.2e-17 | 2.3e-17 |
| max | 3.9e-16 | 5e-16 | 4.3e-16 | 6.5e-16 | 8.7e-16 | 4.9e-16 | 6.2e-16 | 4.3e-16 | 5e-16 | 4.5e-16 | 5.8e-16 | 4.9e-16 | 5.9e-16 | 6.1e-16 | 5.3e-16 | 2.1e-15 | 1e-14 | 9e-16 | 1.1e-15 | 9.1e-16 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/transport/montecarlo/tests/test_montecarlo_main_loop Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/transport/montecarlo/tests/test_montecarlo_main_loop Displaying heatmap for key /simulation/plasma/level_boltzmann_factor in file test_montecarlo_main_loop.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 2.4e-23 | 4.9e-23 | 6.1e-23 | 1.6e-21 | 4.3e-23 | 2e-22 | 3.7e-23 | 8.6e-23 | 2.5e-20 | 6.9e-23 | 1.6e-21 | 7.9e-22 | 2.8e-23 | 4.3e-22 | 3.7e-23 | 2.5e-23 | 1.3e-22 | 1.2e-23 | 4.6e-24 | 8e-24 |
| max | 1.1e-19 | 2.2e-19 | 2.2e-19 | 6.9e-18 | 1.1e-19 | 8.7e-19 | 1.1e-19 | 2.2e-19 | 1.1e-16 | 1.1e-19 | 6.9e-18 | 1.7e-18 | 1.1e-19 | 1.7e-18 | 5.4e-20 | 1.1e-19 | 2.2e-19 | 5.4e-20 | 1.4e-20 | 1.4e-20 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 1.8e-19 | 4.3e-19 | 3.2e-19 | 5.2e-19 | 1.6e-19 | 2e-19 | 1.6e-19 | 2.2e-19 | 4.1e-19 | 4.7e-19 | 6.2e-19 | 3.3e-19 | 2.5e-19 | 3.3e-19 | 3.5e-19 | 1.9e-19 | 3.3e-19 | 2.2e-19 | 3.2e-19 | 2.6e-19 |
| max | 2.2e-16 | 2.8e-16 | 2.2e-16 | 3.5e-16 | 1.6e-16 | 1.8e-16 | 1.9e-16 | 2.3e-16 | 2.8e-16 | 2.4e-16 | 2.5e-16 | 2.9e-16 | 2.5e-16 | 3.1e-16 | 2.3e-16 | 2.1e-16 | 2.1e-16 | 2.6e-16 | 2.2e-16 | 2.4e-16 |
Significant difference detected in test_montecarlo_main_loop.h5, key=/simulation/transport/transport_state/last_interaction_in_r Maximum relative difference: 1.46e-13 (Versions differ by 1.46e-11%)
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/transport/montecarlo/tests/test_montecarlo_main_loop Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/transport/montecarlo/tests/test_montecarlo_main_loop Displaying heatmap for key /simulation/transport/transport_state/last_interaction_in_r in file test_montecarlo_main_loop.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 1.2e+02 |
| max | 2.4e+02 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 7.3e-14 |
| max | 1.5e-13 |
Significant difference detected in test_montecarlo_main_loop.h5, key=/simulation/spectrum_solver/spectrum_integrated/luminosity_density_lambda Maximum relative difference: 7.97e-12 (Versions differ by 7.97e-10%)
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/transport/montecarlo/tests/test_montecarlo_main_loop Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/transport/montecarlo/tests/test_montecarlo_main_loop Displaying heatmap for key /simulation/spectrum_solver/spectrum_integrated/luminosity_density_lambda in file test_montecarlo_main_loop.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 6.2e+31 |
| max | 1.2e+32 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 4.1e-12 |
| max | 8e-12 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/transport/montecarlo/tests/test_montecarlo_main_loop Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/transport/montecarlo/tests/test_montecarlo_main_loop
Significant difference detected in test_montecarlo_main_loop.h5, key=/simulation/spectrum_solver/spectrum_real_packets/luminosity Maximum relative difference: 2.60e-13 (Versions differ by 2.60e-11%)
Displaying heatmap for key /simulation/spectrum_solver/spectrum_real_packets/luminosity in file test_montecarlo_main_loop.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 3.1e+26 |
| max | 6.2e+26 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 1.3e-13 |
| max | 2.6e-13 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/transport/montecarlo/tests/test_montecarlo_main_loop Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/transport/montecarlo/tests/test_montecarlo_main_loop Displaying heatmap for key /simulation/plasma/phi in file test_montecarlo_main_loop.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 0 | 6.1e-81 | 0 | 0 | 5.1e-105 | 0 | 0 | 0 | 1.4e-242 | 0 | 0 | 0 | 2.7e-37 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 0 | 5.4e-79 | 0 | 0 | 4.5e-103 | 0 | 0 | 0 | 1.2e-240 | 0 | 0 | 0 | 2.4e-35 | 0 | 0 | 0 | 0 | 0 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 0 | 1.8e-18 | 0 | 0 | 1.8e-18 | 0 | 0 | 0 | 5.3e-18 | 0 | 0 | 0 | 2.6e-18 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 0 | 1.1e-16 | 0 | 0 | 1.2e-16 | 0 | 0 | 0 | 3.4e-16 | 0 | 0 | 0 | 1.6e-16 | 0 | 0 | 0 | 0 | 0 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/transport/montecarlo/tests/test_montecarlo_main_loop Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/transport/montecarlo/tests/test_montecarlo_main_loop
Significant difference detected in test_montecarlo_main_loop.h5, key=/simulation/spectrum_solver/spectrum_integrated/luminosity Maximum relative difference: 7.97e-12 (Versions differ by 7.97e-10%)
Displaying heatmap for key /simulation/spectrum_solver/spectrum_integrated/luminosity in file test_montecarlo_main_loop.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 1.2e+24 |
| max | 2.4e+24 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 4.1e-12 |
| max | 8e-12 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/transport/montecarlo/tests/test_montecarlo_main_loop Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/transport/montecarlo/tests/test_montecarlo_main_loop
Significant difference detected in test_montecarlo_main_loop.h5, key=/simulation/plasma/tau_sobolevs Maximum relative difference: 1.14e-14 (Versions differ by 1.14e-12%)
Displaying heatmap for key /simulation/plasma/tau_sobolevs in file test_montecarlo_main_loop.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 9.9e-26 | 6.5e-25 | 1.4e-25 | 6.5e-24 | 1.1e-28 | 1e-23 | 2.4e-25 | 1.1e-25 | 3.4e-22 | 1.1e-25 | 4.4e-25 | 5.1e-26 | 1.3e-26 | 1.6e-28 | 1.2e-27 | 8.2e-25 | 2.2e-30 | 2.5e-38 | 2.6e-24 | 4.3e-26 |
| max | 1.3e-21 | 1e-20 | 8.5e-22 | 8.1e-20 | 1.7e-24 | 1.6e-19 | 2.5e-21 | 8.5e-22 | 3.5e-18 | 8.5e-22 | 6.8e-21 | 3.2e-22 | 1.3e-22 | 3.7e-24 | 1.3e-23 | 1e-20 | 2.3e-26 | 6.7e-34 | 2.7e-20 | 4.2e-22 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 2.1e-19 | 8.5e-19 | 3.6e-19 | 2.5e-18 | 5.1e-20 | 8.8e-19 | 3.3e-19 | 4.3e-19 | 1e-18 | 2.2e-18 | 8.5e-19 | 4.5e-18 | 1.1e-18 | 3.1e-18 | 4e-19 | 1.5e-19 | 1.2e-18 | 4.1e-19 | 1e-18 | 2.3e-19 |
| max | 7e-16 | 2.7e-15 | 1.2e-15 | 6.9e-15 | 3.8e-16 | 9.3e-16 | 6.5e-16 | 8.3e-16 | 1.8e-15 | 1.1e-14 | 2.3e-15 | 6e-15 | 1.9e-15 | 5.9e-15 | 8.3e-16 | 4e-16 | 4.4e-15 | 4e-15 | 2.4e-15 | 6.8e-16 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/transport/montecarlo/tests/test_montecarlo_main_loop Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/transport/montecarlo/tests/test_montecarlo_main_loop
Displaying heatmap for key /simulation/transport/transport_state/output_energy in file test_montecarlo_main_loop.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 2.9e-20 |
| max | 5.8e-20 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 3.2e-15 |
| max | 6.5e-15 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/transport/montecarlo/tests/test_montecarlo_main_loop Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/transport/montecarlo/tests/test_montecarlo_main_loop
Significant difference detected in test_montecarlo_main_loop.h5, key=/simulation/spectrum_solver/spectrum_real_packets/luminosity_density_lambda Maximum relative difference: 2.60e-13 (Versions differ by 2.60e-11%)
Displaying heatmap for key /simulation/spectrum_solver/spectrum_real_packets/luminosity_density_lambda in file test_montecarlo_main_loop.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 7e+33 |
| max | 1.4e+34 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 1.3e-13 |
| max | 2.6e-13 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/transport/montecarlo/tests/test_montecarlo_main_loop Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/transport/montecarlo/tests/test_montecarlo_main_loop
Displaying heatmap for key /simulation/transport/transport_state/last_interaction_in_nu in file test_montecarlo_main_loop.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 4.8 |
| max | 9.5 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 3e-15 |
| max | 6.1e-15 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/transport/montecarlo/tests/test_montecarlo_main_loop Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/transport/montecarlo/tests/test_montecarlo_main_loop
Displaying heatmap for key /simulation/plasma/general_level_boltzmann_factor in file test_montecarlo_main_loop.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 2.4e-23 | 4.9e-23 | 6.1e-23 | 1.6e-21 | 4.3e-23 | 2e-22 | 3.7e-23 | 8.6e-23 | 2.5e-20 | 6.9e-23 | 1.6e-21 | 7.9e-22 | 2.8e-23 | 4.3e-22 | 3.7e-23 | 2.5e-23 | 1.3e-22 | 1.2e-23 | 4.6e-24 | 8e-24 |
| max | 1.1e-19 | 2.2e-19 | 2.2e-19 | 6.9e-18 | 1.1e-19 | 8.7e-19 | 1.1e-19 | 2.2e-19 | 1.1e-16 | 1.1e-19 | 6.9e-18 | 1.7e-18 | 1.1e-19 | 1.7e-18 | 5.4e-20 | 1.1e-19 | 2.2e-19 | 5.4e-20 | 1.4e-20 | 1.4e-20 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 1.8e-19 | 4.3e-19 | 3.2e-19 | 5.2e-19 | 1.6e-19 | 2e-19 | 1.6e-19 | 2.2e-19 | 4.1e-19 | 4.7e-19 | 6.2e-19 | 3.3e-19 | 2.5e-19 | 3.3e-19 | 3.5e-19 | 1.9e-19 | 3.3e-19 | 2.2e-19 | 3.2e-19 | 2.6e-19 |
| max | 2.2e-16 | 2.8e-16 | 2.2e-16 | 3.5e-16 | 1.6e-16 | 1.8e-16 | 1.9e-16 | 2.3e-16 | 2.8e-16 | 2.4e-16 | 2.5e-16 | 2.9e-16 | 2.5e-16 | 3.1e-16 | 2.3e-16 | 2.1e-16 | 2.1e-16 | 2.6e-16 | 2.2e-16 | 2.4e-16 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/transport/montecarlo/tests/test_montecarlo_main_loop Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/transport/montecarlo/tests/test_montecarlo_main_loop
Significant difference detected in test_montecarlo_main_loop.h5, key=/simulation/plasma/transition_probabilities Maximum relative difference: 1.07e-12 (Versions differ by 1.07e-10%)
Displaying heatmap for key /simulation/plasma/transition_probabilities in file test_montecarlo_main_loop.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 4.5e-18 | 4.8e-18 | 2.9e-18 | 3.4e-18 | 2.2e-18 | 4.8e-19 | 3.1e-18 | 2.5e-18 | 8.5e-18 | 1e-17 | 1e-18 | 8.2e-18 | 2.8e-21 | 1.5e-18 | 2.9e-18 | 3.6e-18 | 3.9e-18 | 5.2e-19 | 2.3e-18 | 5.1e-19 |
| max | 5.1e-14 | 1e-13 | 3.5e-14 | 5.2e-14 | 5e-14 | 1.6e-14 | 3.4e-14 | 8.2e-14 | 1.4e-13 | 1.5e-13 | 3.1e-14 | 2.2e-13 | 5.6e-17 | 3.2e-14 | 5.9e-14 | 5.9e-14 | 5.1e-14 | 7.5e-15 | 6.7e-14 | 1.2e-14 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 2.1e-16 | 7.7e-17 | 1.3e-16 | 1.1e-16 | 7.3e-17 | 2.6e-17 | 7.8e-17 | 2.8e-17 | 5.1e-16 | 2.4e-16 | 3.4e-17 | 3.7e-16 | 5.8e-19 | 6.3e-17 | 1.2e-16 | 7.5e-17 | 1.1e-16 | 6.1e-17 | 3.4e-17 | 3.8e-17 |
| max | 8.3e-13 | 5.2e-13 | 7e-13 | 3e-13 | 3e-13 | 4.6e-13 | 3.3e-13 | 3.3e-13 | 9.4e-13 | 8.9e-13 | 6e-13 | 1.1e-12 | 8.4e-15 | 1.6e-13 | 4.8e-13 | 9.1e-13 | 6e-13 | 1e-12 | 5.2e-13 | 1.6e-13 |
Significant difference detected in test_montecarlo_main_loop.h5, key=/simulation/plasma/stimulated_emission_factor Maximum relative difference: 1.14e-14 (Versions differ by 1.14e-12%)
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/transport/montecarlo/tests/test_montecarlo_main_loop Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/transport/montecarlo/tests/test_montecarlo_main_loop Displaying heatmap for key /simulation/plasma/stimulated_emission_factor in file test_montecarlo_main_loop.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 7.2e-20 | 1.8e-19 | 6.5e-20 | 4.1e-19 | 3.8e-21 | 1.1e-19 | 8.7e-20 | 9.5e-20 | 2e-19 | 3.4e-19 | 1.9e-19 | 7.3e-19 | 2.1e-19 | 5.2e-19 | 1.1e-19 | 2.3e-20 | 1.9e-19 | 3.4e-20 | 2.2e-19 | 6.1e-20 |
| max | 2.2e-16 | 4.4e-16 | 2.2e-16 | 4.4e-16 | 1.1e-16 | 2.2e-16 | 2.2e-16 | 2.2e-16 | 2.2e-16 | 3.3e-16 | 3.3e-16 | 4.4e-16 | 2.2e-16 | 3.3e-16 | 2.2e-16 | 1.1e-16 | 2.2e-16 | 2.2e-16 | 3.3e-16 | 2.2e-16 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 1.6e-19 | 6.2e-19 | 1.5e-19 | 1.6e-18 | 5.2e-21 | 2.2e-19 | 1.6e-19 | 2.6e-19 | 6.9e-19 | 1.8e-18 | 6.9e-19 | 3.6e-18 | 8.1e-19 | 2.6e-18 | 2.6e-19 | 4.3e-20 | 9.3e-19 | 3.6e-19 | 7.9e-19 | 2e-19 |
| max | 5.9e-16 | 2.6e-15 | 9.8e-16 | 6.9e-15 | 1.4e-16 | 1e-15 | 4.5e-16 | 7.9e-16 | 1.5e-15 | 1.1e-14 | 2.3e-15 | 5.6e-15 | 1.4e-15 | 5.5e-15 | 4.4e-16 | 2.4e-16 | 4.5e-15 | 3.9e-15 | 2.1e-15 | 7.1e-16 |
Significant difference detected in test_montecarlo_main_loop.h5, key=/simulation/plasma/beta_sobolev Maximum relative difference: 1.08e-12 (Versions differ by 1.08e-10%)
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/transport/montecarlo/tests/test_montecarlo_main_loop Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/transport/montecarlo/tests/test_montecarlo_main_loop Displaying heatmap for key /simulation/plasma/beta_sobolev in file test_montecarlo_main_loop.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 1.1e-16 | 4.6e-17 | 5.7e-17 | 3.2e-17 | 1.7e-17 | 1.9e-17 | 3.1e-17 | 1.3e-17 | 1.1e-16 | 9.6e-17 | 2.3e-17 | 5.3e-17 | 0 | 1.2e-17 | 2.6e-17 | 4.5e-17 | 4.5e-17 | 5.4e-17 | 2.3e-17 | 9.6e-18 |
| max | 8.4e-13 | 5.2e-13 | 7.1e-13 | 3e-13 | 3.1e-13 | 4.6e-13 | 3.3e-13 | 3.4e-13 | 9.4e-13 | 8.9e-13 | 6.1e-13 | 1.1e-12 | 0 | 1.6e-13 | 4.8e-13 | 9.1e-13 | 6e-13 | 1e-12 | 5.3e-13 | 1.6e-13 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 1.1e-16 | 4.6e-17 | 5.7e-17 | 3.2e-17 | 1.7e-17 | 1.9e-17 | 3.1e-17 | 1.3e-17 | 1.1e-16 | 9.6e-17 | 2.3e-17 | 5.3e-17 | 0 | 1.3e-17 | 2.6e-17 | 4.5e-17 | 4.5e-17 | 5.4e-17 | 2.3e-17 | 9.6e-18 |
| max | 8.4e-13 | 5.2e-13 | 7.1e-13 | 3e-13 | 3.1e-13 | 4.6e-13 | 3.3e-13 | 3.4e-13 | 9.4e-13 | 8.9e-13 | 6.1e-13 | 1.1e-12 | 0 | 1.6e-13 | 4.8e-13 | 9.1e-13 | 6e-13 | 1e-12 | 5.3e-13 | 1.6e-13 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/transport/montecarlo/tests/test_montecarlo_main_loop Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/transport/montecarlo/tests/test_montecarlo_main_loop
Significant difference detected in test_montecarlo_main_loop.h5, key=/simulation/plasma/j_blues Maximum relative difference: 1.46e-14 (Versions differ by 1.46e-12%)
Displaying heatmap for key /simulation/plasma/j_blues in file test_montecarlo_main_loop.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 1.3e-23 | 8.7e-24 | 7.8e-24 | 5.9e-24 | 5.5e-24 | 4.7e-24 | 6.7e-24 | 4.3e-24 | 3.6e-24 | 4.1e-24 | 3.5e-24 | 4.4e-24 | 2.9e-24 | 2.4e-24 | 2.9e-24 | 2.3e-24 | 2e-24 | 2e-24 | 2.7e-24 | 1.7e-24 |
| max | 2.7e-20 | 2e-20 | 1.4e-20 | 1.4e-20 | 6.8e-21 | 6.8e-21 | 1.4e-20 | 6.8e-21 | 1e-20 | 1e-20 | 3.4e-21 | 6.8e-21 | 3.4e-21 | 3.4e-21 | 6.8e-21 | 6.8e-21 | 5.1e-21 | 3.4e-21 | 6.8e-21 | 3.4e-21 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 5.6e-19 | 4.3e-19 | 7.7e-19 | 4.5e-19 | 1.6e-18 | 5.7e-19 | 1.3e-18 | 6.2e-19 | 6.9e-19 | 4.4e-19 | 5.1e-19 | 1.1e-18 | 7.4e-19 | 5.2e-19 | 5.6e-19 | 5.4e-19 | 6.1e-19 | 8.2e-19 | 5.7e-19 | 8.5e-19 |
| max | 1.4e-15 | 1.2e-15 | 7.4e-15 | 1.1e-15 | 1.4e-14 | 1.5e-15 | 8.4e-15 | 2.6e-15 | 4.1e-15 | 1.4e-15 | 9.3e-16 | 1.4e-14 | 8.3e-15 | 2.2e-15 | 2.3e-15 | 8.7e-16 | 4e-15 | 1.1e-14 | 1.2e-15 | 1.5e-14 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/transport/montecarlo/tests/test_montecarlo_main_loop Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/transport/montecarlo/tests/test_montecarlo_main_loop Error comparing item: /simulation/plasma/dilute_planckian_radiation_field No module named 'tardis.plasma.radiation_field' Displaying heatmap for key /simulation/transport/transport_state/packet_luminosity in file test_montecarlo_main_loop.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 3.1e+23 |
| max | 6.2e+23 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 3.3e-15 |
| max | 6.5e-15 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/transport/montecarlo/tests/test_montecarlo_main_loop Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/transport/montecarlo/tests/test_montecarlo_main_loop Displaying heatmap for key /simulation/transport/transport_state/output_nu in file test_montecarlo_main_loop.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 6.4 |
| max | 13 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 3.2e-15 |
| max | 6.3e-15 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/transport/montecarlo/tests/test_montecarlo_main_loop Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/transport/montecarlo/tests/test_montecarlo_main_loop
Displaying heatmap for key /simulation/transport/transport_state/j_estimator in file test_montecarlo_main_loop.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 0.092 |
| max | 0.12 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 1.8e-15 |
| max | 2.6e-15 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/transport/montecarlo/tests/test_montecarlo_main_loop Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/transport/montecarlo/tests/test_montecarlo_main_loop Displaying heatmap for key /simulation/transport/transport_state/nu_bar_estimator in file test_montecarlo_main_loop.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 1.1e+14 |
| max | 1.6e+14 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 2.9e-15 |
| max | 4.5e-15 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/transport/montecarlo/tests/test_montecarlo_main_loop Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/transport/montecarlo/tests/test_montecarlo_main_loop ================================================== Summary for test_montecarlo_main_loop.h5: Total number of keys- in ref1: 83, in ref2: 83 Number of keys with different names in ref1 and ref2: 0 Number of keys with same name but different data in ref1 and ref2: 21 Number of totally same keys: 61 ==================================================
Significant difference detected in test_montecarlo_main_loop_vpacket_log.h5, key=/simulation/transport/transport_state/virt_packet_last_interaction_in_r Maximum relative difference: 4.23e-14 (Versions differ by 4.23e-12%)
Displaying heatmap for key /simulation/transport/transport_state/virt_packet_last_interaction_in_r in file test_montecarlo_main_loop_vpacket_log.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 27 |
| max | 54 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 2.1e-14 |
| max | 4.2e-14 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/transport/montecarlo/tests/test_montecarlo_main_loop Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/transport/montecarlo/tests/test_montecarlo_main_loop
Displaying heatmap for key /simulation/transport/transport_state/j_blue_estimator in file test_montecarlo_main_loop_vpacket_log.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 3.8e-36 | 9.4e-36 | 1.1e-35 | 1.1e-35 | 1.1e-35 | 1.1e-35 | 1.1e-35 | 1e-35 | 1e-35 | 1.2e-35 | 1e-35 | 1.1e-35 | 1.1e-35 | 1.1e-35 | 1e-35 | 1.1e-35 | 1.1e-35 | 1e-35 | 1e-35 | 1e-35 |
| max | 7.7e-34 | 1.5e-33 | 7.7e-34 | 7.7e-34 | 7.7e-34 | 7.7e-34 | 7.7e-34 | 7.7e-34 | 7.7e-34 | 7.7e-34 | 7.7e-34 | 7.7e-34 | 7.7e-34 | 7.7e-34 | 7.7e-34 | 7.7e-34 | 5.8e-34 | 5.8e-34 | 5.8e-34 | 7.7e-34 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 2.8e-18 | 8.2e-18 | 1.2e-17 | 1.2e-17 | 1.4e-17 | 1.5e-17 | 1.6e-17 | 1.6e-17 | 1.7e-17 | 2e-17 | 1.9e-17 | 2.1e-17 | 2.1e-17 | 2.1e-17 | 2.1e-17 | 2.3e-17 | 2.2e-17 | 2.3e-17 | 2.2e-17 | 2.3e-17 |
| max | 4.1e-16 | 4.2e-16 | 4.5e-16 | 4.8e-16 | 7e-16 | 4.5e-16 | 7.9e-16 | 6e-16 | 4.5e-16 | 6.2e-16 | 9e-16 | 7.6e-16 | 1e-15 | 8.5e-16 | 6.6e-16 | 5.9e-16 | 6.5e-16 | 7.4e-16 | 9.2e-16 | 8.2e-16 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/transport/montecarlo/tests/test_montecarlo_main_loop Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/transport/montecarlo/tests/test_montecarlo_main_loop Displaying heatmap for key /simulation/plasma/level_number_density in file test_montecarlo_main_loop_vpacket_log.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 9.6e-26 | 5e-25 | 3.2e-24 | 1.4e-23 | 3.8e-28 | 6.1e-24 | 9.5e-26 | 1.1e-25 | 3.5e-21 | 1.8e-25 | 1.6e-24 | 4.8e-26 | 1.9e-26 | 1.9e-28 | 9.7e-26 | 1.9e-25 | 7.8e-22 | 7.3e-31 | 8.6e-25 | 6.4e-27 |
| max | 4.2e-22 | 1.7e-21 | 1.4e-20 | 2.7e-20 | 1.7e-24 | 2.7e-20 | 4.2e-22 | 4.2e-22 | 1.4e-17 | 4.2e-22 | 6.8e-21 | 1.1e-22 | 5.3e-23 | 8.3e-25 | 4.2e-22 | 8.5e-22 | 3.5e-18 | 3.2e-27 | 3.4e-21 | 2.6e-23 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 1.8e-19 | 4.4e-19 | 2.5e-19 | 6.6e-19 | 1.9e-19 | 2.5e-19 | 1.6e-19 | 3e-19 | 3.4e-19 | 3.7e-19 | 4.2e-19 | 4e-19 | 2.9e-19 | 2.4e-19 | 4e-19 | 1.7e-19 | 4.6e-19 | 1.9e-19 | 3.8e-19 | 1.4e-19 |
| max | 2.2e-16 | 4e-16 | 2.2e-16 | 4.2e-16 | 2.3e-16 | 3e-16 | 2.4e-16 | 3.1e-16 | 2.1e-16 | 2.4e-16 | 3.4e-16 | 3.9e-16 | 2.3e-16 | 3.1e-16 | 3e-16 | 3e-16 | 2.9e-16 | 2.5e-16 | 3e-16 | 1.5e-16 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/transport/montecarlo/tests/test_montecarlo_main_loop Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/transport/montecarlo/tests/test_montecarlo_main_loop
Displaying heatmap for key /simulation/plasma/level_boltzmann_factor in file test_montecarlo_main_loop_vpacket_log.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 2.4e-23 | 4.9e-23 | 6.1e-23 | 1.6e-21 | 4.3e-23 | 2e-22 | 3.7e-23 | 8.6e-23 | 2.5e-20 | 6.9e-23 | 1.6e-21 | 7.9e-22 | 2.8e-23 | 4.3e-22 | 3.7e-23 | 2.5e-23 | 1.3e-22 | 1.2e-23 | 4.6e-24 | 8e-24 |
| max | 1.1e-19 | 2.2e-19 | 2.2e-19 | 6.9e-18 | 1.1e-19 | 8.7e-19 | 1.1e-19 | 2.2e-19 | 1.1e-16 | 1.1e-19 | 6.9e-18 | 1.7e-18 | 1.1e-19 | 1.7e-18 | 5.4e-20 | 1.1e-19 | 2.2e-19 | 5.4e-20 | 1.4e-20 | 1.4e-20 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 1.8e-19 | 4.3e-19 | 3.2e-19 | 5.2e-19 | 1.6e-19 | 2e-19 | 1.6e-19 | 2.2e-19 | 4.1e-19 | 4.7e-19 | 6.2e-19 | 3.3e-19 | 2.5e-19 | 3.3e-19 | 3.5e-19 | 1.9e-19 | 3.3e-19 | 2.2e-19 | 3.2e-19 | 2.6e-19 |
| max | 2.2e-16 | 2.8e-16 | 2.2e-16 | 3.5e-16 | 1.6e-16 | 1.8e-16 | 1.9e-16 | 2.3e-16 | 2.8e-16 | 2.4e-16 | 2.5e-16 | 2.9e-16 | 2.5e-16 | 3.1e-16 | 2.3e-16 | 2.1e-16 | 2.1e-16 | 2.6e-16 | 2.2e-16 | 2.4e-16 |
Significant difference detected in test_montecarlo_main_loop_vpacket_log.h5, key=/simulation/transport/transport_state/last_interaction_in_r Maximum relative difference: 4.23e-14 (Versions differ by 4.23e-12%)
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/transport/montecarlo/tests/test_montecarlo_main_loop Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/transport/montecarlo/tests/test_montecarlo_main_loop Displaying heatmap for key /simulation/transport/transport_state/last_interaction_in_r in file test_montecarlo_main_loop_vpacket_log.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 27 |
| max | 54 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 2.1e-14 |
| max | 4.2e-14 |
Significant difference detected in test_montecarlo_main_loop_vpacket_log.h5, key=/simulation/spectrum_solver/spectrum_integrated/luminosity_density_lambda Maximum relative difference: 9.81e-12 (Versions differ by 9.81e-10%)
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/transport/montecarlo/tests/test_montecarlo_main_loop Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/transport/montecarlo/tests/test_montecarlo_main_loop Displaying heatmap for key /simulation/spectrum_solver/spectrum_integrated/luminosity_density_lambda in file test_montecarlo_main_loop_vpacket_log.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 8.2e+31 |
| max | 1.6e+32 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 5e-12 |
| max | 9.8e-12 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/transport/montecarlo/tests/test_montecarlo_main_loop Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/transport/montecarlo/tests/test_montecarlo_main_loop
Displaying heatmap for key /simulation/plasma/phi in file test_montecarlo_main_loop_vpacket_log.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 0 | 6.1e-81 | 0 | 0 | 5.1e-105 | 0 | 0 | 0 | 1.4e-242 | 0 | 0 | 0 | 2.7e-37 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 0 | 5.4e-79 | 0 | 0 | 4.5e-103 | 0 | 0 | 0 | 1.2e-240 | 0 | 0 | 0 | 2.4e-35 | 0 | 0 | 0 | 0 | 0 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 0 | 1.8e-18 | 0 | 0 | 1.8e-18 | 0 | 0 | 0 | 5.3e-18 | 0 | 0 | 0 | 2.6e-18 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 0 | 1.1e-16 | 0 | 0 | 1.2e-16 | 0 | 0 | 0 | 3.4e-16 | 0 | 0 | 0 | 1.6e-16 | 0 | 0 | 0 | 0 | 0 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/transport/montecarlo/tests/test_montecarlo_main_loop Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/transport/montecarlo/tests/test_montecarlo_main_loop
Significant difference detected in test_montecarlo_main_loop_vpacket_log.h5, key=/simulation/transport/transport_state/virt_packet_energies Maximum relative difference: 3.13e-13 (Versions differ by 3.13e-11%)
Displaying heatmap for key /simulation/transport/transport_state/virt_packet_energies in file test_montecarlo_main_loop_vpacket_log.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 6.4e-20 |
| max | 1.3e-19 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 1.6e-13 |
| max | 3.1e-13 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/transport/montecarlo/tests/test_montecarlo_main_loop Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/transport/montecarlo/tests/test_montecarlo_main_loop
Significant difference detected in test_montecarlo_main_loop_vpacket_log.h5, key=/simulation/spectrum_solver/spectrum_integrated/luminosity Maximum relative difference: 9.81e-12 (Versions differ by 9.81e-10%)
Displaying heatmap for key /simulation/spectrum_solver/spectrum_integrated/luminosity in file test_montecarlo_main_loop_vpacket_log.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 1.8e+24 |
| max | 3.6e+24 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 5e-12 |
| max | 9.8e-12 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/transport/montecarlo/tests/test_montecarlo_main_loop Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/transport/montecarlo/tests/test_montecarlo_main_loop
Significant difference detected in test_montecarlo_main_loop_vpacket_log.h5, key=/simulation/plasma/tau_sobolevs Maximum relative difference: 1.14e-14 (Versions differ by 1.14e-12%)
Displaying heatmap for key /simulation/plasma/tau_sobolevs in file test_montecarlo_main_loop_vpacket_log.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 9.9e-26 | 6.5e-25 | 1.4e-25 | 6.5e-24 | 1.1e-28 | 1e-23 | 2.4e-25 | 1.1e-25 | 3.4e-22 | 1.1e-25 | 4.4e-25 | 5.1e-26 | 1.3e-26 | 1.6e-28 | 1.2e-27 | 8.2e-25 | 2.2e-30 | 2.5e-38 | 2.6e-24 | 4.3e-26 |
| max | 1.3e-21 | 1e-20 | 8.5e-22 | 8.1e-20 | 1.7e-24 | 1.6e-19 | 2.5e-21 | 8.5e-22 | 3.5e-18 | 8.5e-22 | 6.8e-21 | 3.2e-22 | 1.3e-22 | 3.7e-24 | 1.3e-23 | 1e-20 | 2.3e-26 | 6.7e-34 | 2.7e-20 | 4.2e-22 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 2.1e-19 | 8.5e-19 | 3.6e-19 | 2.5e-18 | 5.1e-20 | 8.8e-19 | 3.3e-19 | 4.3e-19 | 1e-18 | 2.2e-18 | 8.5e-19 | 4.5e-18 | 1.1e-18 | 3.1e-18 | 4e-19 | 1.5e-19 | 1.2e-18 | 4.1e-19 | 1e-18 | 2.3e-19 |
| max | 7e-16 | 2.7e-15 | 1.2e-15 | 6.9e-15 | 3.8e-16 | 9.3e-16 | 6.5e-16 | 8.3e-16 | 1.8e-15 | 1.1e-14 | 2.3e-15 | 6e-15 | 1.9e-15 | 5.9e-15 | 8.3e-16 | 4e-16 | 4.4e-15 | 4e-15 | 2.4e-15 | 6.8e-16 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/transport/montecarlo/tests/test_montecarlo_main_loop Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/transport/montecarlo/tests/test_montecarlo_main_loop
Displaying heatmap for key /simulation/transport/transport_state/output_energy in file test_montecarlo_main_loop_vpacket_log.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 1.7e-20 |
| max | 3.4e-20 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 1.8e-15 |
| max | 3.5e-15 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/transport/montecarlo/tests/test_montecarlo_main_loop Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/transport/montecarlo/tests/test_montecarlo_main_loop
Displaying heatmap for key /simulation/transport/transport_state/last_interaction_in_nu in file test_montecarlo_main_loop_vpacket_log.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 1.8 |
| max | 3.5 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 8.4e-16 |
| max | 1.7e-15 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/transport/montecarlo/tests/test_montecarlo_main_loop Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/transport/montecarlo/tests/test_montecarlo_main_loop Displaying heatmap for key /simulation/plasma/general_level_boltzmann_factor in file test_montecarlo_main_loop_vpacket_log.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 2.4e-23 | 4.9e-23 | 6.1e-23 | 1.6e-21 | 4.3e-23 | 2e-22 | 3.7e-23 | 8.6e-23 | 2.5e-20 | 6.9e-23 | 1.6e-21 | 7.9e-22 | 2.8e-23 | 4.3e-22 | 3.7e-23 | 2.5e-23 | 1.3e-22 | 1.2e-23 | 4.6e-24 | 8e-24 |
| max | 1.1e-19 | 2.2e-19 | 2.2e-19 | 6.9e-18 | 1.1e-19 | 8.7e-19 | 1.1e-19 | 2.2e-19 | 1.1e-16 | 1.1e-19 | 6.9e-18 | 1.7e-18 | 1.1e-19 | 1.7e-18 | 5.4e-20 | 1.1e-19 | 2.2e-19 | 5.4e-20 | 1.4e-20 | 1.4e-20 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 1.8e-19 | 4.3e-19 | 3.2e-19 | 5.2e-19 | 1.6e-19 | 2e-19 | 1.6e-19 | 2.2e-19 | 4.1e-19 | 4.7e-19 | 6.2e-19 | 3.3e-19 | 2.5e-19 | 3.3e-19 | 3.5e-19 | 1.9e-19 | 3.3e-19 | 2.2e-19 | 3.2e-19 | 2.6e-19 |
| max | 2.2e-16 | 2.8e-16 | 2.2e-16 | 3.5e-16 | 1.6e-16 | 1.8e-16 | 1.9e-16 | 2.3e-16 | 2.8e-16 | 2.4e-16 | 2.5e-16 | 2.9e-16 | 2.5e-16 | 3.1e-16 | 2.3e-16 | 2.1e-16 | 2.1e-16 | 2.6e-16 | 2.2e-16 | 2.4e-16 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/transport/montecarlo/tests/test_montecarlo_main_loop Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/transport/montecarlo/tests/test_montecarlo_main_loop
Significant difference detected in test_montecarlo_main_loop_vpacket_log.h5, key=/simulation/transport/transport_state/virt_packet_initial_mus Maximum relative difference: 1.53e-10 (Versions differ by 1.53e-08%)
Displaying heatmap for key /simulation/transport/transport_state/virt_packet_initial_mus in file test_montecarlo_main_loop_vpacket_log.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 1.4e-13 |
| max | 2.9e-13 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 7.6e-11 |
| max | 1.5e-10 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/transport/montecarlo/tests/test_montecarlo_main_loop Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/transport/montecarlo/tests/test_montecarlo_main_loop
Significant difference detected in test_montecarlo_main_loop_vpacket_log.h5, key=/simulation/plasma/transition_probabilities Maximum relative difference: 1.07e-12 (Versions differ by 1.07e-10%)
Displaying heatmap for key /simulation/plasma/transition_probabilities in file test_montecarlo_main_loop_vpacket_log.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 4.5e-18 | 4.8e-18 | 2.9e-18 | 3.4e-18 | 2.2e-18 | 4.8e-19 | 3.1e-18 | 2.5e-18 | 8.5e-18 | 1e-17 | 1e-18 | 8.2e-18 | 2.8e-21 | 1.5e-18 | 2.9e-18 | 3.6e-18 | 3.9e-18 | 5.2e-19 | 2.3e-18 | 5.1e-19 |
| max | 5.1e-14 | 1e-13 | 3.5e-14 | 5.2e-14 | 5e-14 | 1.6e-14 | 3.4e-14 | 8.2e-14 | 1.4e-13 | 1.5e-13 | 3.1e-14 | 2.2e-13 | 5.6e-17 | 3.2e-14 | 5.9e-14 | 5.9e-14 | 5.1e-14 | 7.5e-15 | 6.7e-14 | 1.2e-14 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 2.1e-16 | 7.7e-17 | 1.3e-16 | 1.1e-16 | 7.3e-17 | 2.6e-17 | 7.8e-17 | 2.8e-17 | 5.1e-16 | 2.4e-16 | 3.4e-17 | 3.7e-16 | 5.8e-19 | 6.3e-17 | 1.2e-16 | 7.5e-17 | 1.1e-16 | 6.1e-17 | 3.4e-17 | 3.8e-17 |
| max | 8.3e-13 | 5.2e-13 | 7e-13 | 3e-13 | 3e-13 | 4.6e-13 | 3.3e-13 | 3.3e-13 | 9.4e-13 | 8.9e-13 | 6e-13 | 1.1e-12 | 8.4e-15 | 1.6e-13 | 4.8e-13 | 9.1e-13 | 6e-13 | 1e-12 | 5.2e-13 | 1.6e-13 |
Significant difference detected in test_montecarlo_main_loop_vpacket_log.h5, key=/simulation/plasma/stimulated_emission_factor Maximum relative difference: 1.14e-14 (Versions differ by 1.14e-12%)
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/transport/montecarlo/tests/test_montecarlo_main_loop Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/transport/montecarlo/tests/test_montecarlo_main_loop Displaying heatmap for key /simulation/plasma/stimulated_emission_factor in file test_montecarlo_main_loop_vpacket_log.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 7.2e-20 | 1.8e-19 | 6.5e-20 | 4.1e-19 | 3.8e-21 | 1.1e-19 | 8.7e-20 | 9.5e-20 | 2e-19 | 3.4e-19 | 1.9e-19 | 7.3e-19 | 2.1e-19 | 5.2e-19 | 1.1e-19 | 2.3e-20 | 1.9e-19 | 3.4e-20 | 2.2e-19 | 6.1e-20 |
| max | 2.2e-16 | 4.4e-16 | 2.2e-16 | 4.4e-16 | 1.1e-16 | 2.2e-16 | 2.2e-16 | 2.2e-16 | 2.2e-16 | 3.3e-16 | 3.3e-16 | 4.4e-16 | 2.2e-16 | 3.3e-16 | 2.2e-16 | 1.1e-16 | 2.2e-16 | 2.2e-16 | 3.3e-16 | 2.2e-16 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 1.6e-19 | 6.2e-19 | 1.5e-19 | 1.6e-18 | 5.2e-21 | 2.2e-19 | 1.6e-19 | 2.6e-19 | 6.9e-19 | 1.8e-18 | 6.9e-19 | 3.6e-18 | 8.1e-19 | 2.6e-18 | 2.6e-19 | 4.3e-20 | 9.3e-19 | 3.6e-19 | 7.9e-19 | 2e-19 |
| max | 5.9e-16 | 2.6e-15 | 9.8e-16 | 6.9e-15 | 1.4e-16 | 1e-15 | 4.5e-16 | 7.9e-16 | 1.5e-15 | 1.1e-14 | 2.3e-15 | 5.6e-15 | 1.4e-15 | 5.5e-15 | 4.4e-16 | 2.4e-16 | 4.5e-15 | 3.9e-15 | 2.1e-15 | 7.1e-16 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/transport/montecarlo/tests/test_montecarlo_main_loop Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/transport/montecarlo/tests/test_montecarlo_main_loop
Significant difference detected in test_montecarlo_main_loop_vpacket_log.h5, key=/simulation/transport/transport_state/virt_packet_initial_rs Maximum relative difference: 4.23e-14 (Versions differ by 4.23e-12%)
Displaying heatmap for key /simulation/transport/transport_state/virt_packet_initial_rs in file test_montecarlo_main_loop_vpacket_log.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 27 |
| max | 54 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 2.1e-14 |
| max | 4.2e-14 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/transport/montecarlo/tests/test_montecarlo_main_loop Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/transport/montecarlo/tests/test_montecarlo_main_loop
Significant difference detected in test_montecarlo_main_loop_vpacket_log.h5, key=/simulation/plasma/beta_sobolev Maximum relative difference: 1.08e-12 (Versions differ by 1.08e-10%)
Displaying heatmap for key /simulation/plasma/beta_sobolev in file test_montecarlo_main_loop_vpacket_log.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 1.1e-16 | 4.6e-17 | 5.7e-17 | 3.2e-17 | 1.7e-17 | 1.9e-17 | 3.1e-17 | 1.3e-17 | 1.1e-16 | 9.6e-17 | 2.3e-17 | 5.3e-17 | 0 | 1.2e-17 | 2.6e-17 | 4.5e-17 | 4.5e-17 | 5.4e-17 | 2.3e-17 | 9.6e-18 |
| max | 8.4e-13 | 5.2e-13 | 7.1e-13 | 3e-13 | 3.1e-13 | 4.6e-13 | 3.3e-13 | 3.4e-13 | 9.4e-13 | 8.9e-13 | 6.1e-13 | 1.1e-12 | 0 | 1.6e-13 | 4.8e-13 | 9.1e-13 | 6e-13 | 1e-12 | 5.3e-13 | 1.6e-13 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 1.1e-16 | 4.6e-17 | 5.7e-17 | 3.2e-17 | 1.7e-17 | 1.9e-17 | 3.1e-17 | 1.3e-17 | 1.1e-16 | 9.6e-17 | 2.3e-17 | 5.3e-17 | 0 | 1.3e-17 | 2.6e-17 | 4.5e-17 | 4.5e-17 | 5.4e-17 | 2.3e-17 | 9.6e-18 |
| max | 8.4e-13 | 5.2e-13 | 7.1e-13 | 3e-13 | 3.1e-13 | 4.6e-13 | 3.3e-13 | 3.4e-13 | 9.4e-13 | 8.9e-13 | 6.1e-13 | 1.1e-12 | 0 | 1.6e-13 | 4.8e-13 | 9.1e-13 | 6e-13 | 1e-12 | 5.3e-13 | 1.6e-13 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/transport/montecarlo/tests/test_montecarlo_main_loop Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/transport/montecarlo/tests/test_montecarlo_main_loop
Displaying heatmap for key /simulation/transport/transport_state/virt_packet_last_interaction_in_nu in file test_montecarlo_main_loop_vpacket_log.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 3.4 |
| max | 6.8 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 1.6e-15 |
| max | 3.1e-15 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/transport/montecarlo/tests/test_montecarlo_main_loop Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/transport/montecarlo/tests/test_montecarlo_main_loop
Significant difference detected in test_montecarlo_main_loop_vpacket_log.h5, key=/simulation/plasma/j_blues Maximum relative difference: 1.46e-14 (Versions differ by 1.46e-12%)
Displaying heatmap for key /simulation/plasma/j_blues in file test_montecarlo_main_loop_vpacket_log.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 1.3e-23 | 8.7e-24 | 7.8e-24 | 5.9e-24 | 5.5e-24 | 4.7e-24 | 6.7e-24 | 4.3e-24 | 3.6e-24 | 4.1e-24 | 3.5e-24 | 4.4e-24 | 2.9e-24 | 2.4e-24 | 2.9e-24 | 2.3e-24 | 2e-24 | 2e-24 | 2.7e-24 | 1.7e-24 |
| max | 2.7e-20 | 2e-20 | 1.4e-20 | 1.4e-20 | 6.8e-21 | 6.8e-21 | 1.4e-20 | 6.8e-21 | 1e-20 | 1e-20 | 3.4e-21 | 6.8e-21 | 3.4e-21 | 3.4e-21 | 6.8e-21 | 6.8e-21 | 5.1e-21 | 3.4e-21 | 6.8e-21 | 3.4e-21 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 5.6e-19 | 4.3e-19 | 7.7e-19 | 4.5e-19 | 1.6e-18 | 5.7e-19 | 1.3e-18 | 6.2e-19 | 6.9e-19 | 4.4e-19 | 5.1e-19 | 1.1e-18 | 7.4e-19 | 5.2e-19 | 5.6e-19 | 5.4e-19 | 6.1e-19 | 8.2e-19 | 5.7e-19 | 8.5e-19 |
| max | 1.4e-15 | 1.2e-15 | 7.4e-15 | 1.1e-15 | 1.4e-14 | 1.5e-15 | 8.4e-15 | 2.6e-15 | 4.1e-15 | 1.4e-15 | 9.3e-16 | 1.4e-14 | 8.3e-15 | 2.2e-15 | 2.3e-15 | 8.7e-16 | 4e-15 | 1.1e-14 | 1.2e-15 | 1.5e-14 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/transport/montecarlo/tests/test_montecarlo_main_loop Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/transport/montecarlo/tests/test_montecarlo_main_loop Error comparing item: /simulation/plasma/dilute_planckian_radiation_field No module named 'tardis.plasma.radiation_field' Displaying heatmap for key /simulation/transport/transport_state/packet_luminosity in file test_montecarlo_main_loop_vpacket_log.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 1.8e+23 |
| max | 3.6e+23 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 1.7e-15 |
| max | 3.5e-15 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/transport/montecarlo/tests/test_montecarlo_main_loop Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/transport/montecarlo/tests/test_montecarlo_main_loop Displaying heatmap for key /simulation/transport/transport_state/output_nu in file test_montecarlo_main_loop_vpacket_log.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 2.8 |
| max | 5.5 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 1.7e-15 |
| max | 3.4e-15 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/transport/montecarlo/tests/test_montecarlo_main_loop Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/transport/montecarlo/tests/test_montecarlo_main_loop Displaying heatmap for key /simulation/spectrum_solver/montecarlo_virtual_luminosity in file test_montecarlo_main_loop_vpacket_log.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 1.6e+24 |
| max | 3e+24 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 3.5e-15 |
| max | 6.9e-15 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/transport/montecarlo/tests/test_montecarlo_main_loop Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/transport/montecarlo/tests/test_montecarlo_main_loop
Displaying heatmap for key /simulation/spectrum_solver/spectrum_virtual_packets/luminosity in file test_montecarlo_main_loop_vpacket_log.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 1.6e+24 |
| max | 3e+24 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 3.5e-15 |
| max | 6.9e-15 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/transport/montecarlo/tests/test_montecarlo_main_loop Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/transport/montecarlo/tests/test_montecarlo_main_loop
Significant difference detected in test_montecarlo_main_loop_vpacket_log.h5, key=/simulation/transport/transport_state/virt_packet_nus Maximum relative difference: 1.04e-14 (Versions differ by 1.04e-12%)
Displaying heatmap for key /simulation/transport/transport_state/virt_packet_nus in file test_montecarlo_main_loop_vpacket_log.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 5.5 |
| max | 11 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 5.2e-15 |
| max | 1e-14 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/transport/montecarlo/tests/test_montecarlo_main_loop Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/transport/montecarlo/tests/test_montecarlo_main_loop
Displaying heatmap for key /simulation/spectrum_solver/spectrum_virtual_packets/luminosity_density_lambda in file test_montecarlo_main_loop_vpacket_log.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 8.4e+31 |
| max | 1.6e+32 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 3.6e-15 |
| max | 7e-15 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/transport/montecarlo/tests/test_montecarlo_main_loop Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/transport/montecarlo/tests/test_montecarlo_main_loop
Displaying heatmap for key /simulation/transport/transport_state/j_estimator in file test_montecarlo_main_loop_vpacket_log.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 0.1 |
| max | 0.14 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 1.7e-15 |
| max | 2.2e-15 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/transport/montecarlo/tests/test_montecarlo_main_loop Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/transport/montecarlo/tests/test_montecarlo_main_loop Displaying heatmap for key /simulation/transport/transport_state/nu_bar_estimator in file test_montecarlo_main_loop_vpacket_log.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 9e+13 |
| max | 1.2e+14 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 2.1e-15 |
| max | 3.1e-15 |
Significant difference detected in test_simulation__-1-macroatom__.h5, key=/simulation_container/transport/transport_state/last_interaction_in_r Maximum relative difference: 5.89e-14 (Versions differ by 5.89e-12%)
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/transport/montecarlo/tests/test_montecarlo_main_loop Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/transport/montecarlo/tests/test_montecarlo_main_loop ================================================== Summary for test_montecarlo_main_loop_vpacket_log.h5: Total number of keys- in ref1: 93, in ref2: 93 Number of keys with different names in ref1 and ref2: 0 Number of keys with same name but different data in ref1 and ref2: 28 Number of totally same keys: 64 ================================================== Displaying heatmap for key /simulation_container/transport/transport_state/last_interaction_in_r in file test_simulation__-1-macroatom__.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 37 |
| max | 74 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 3e-14 |
| max | 5.9e-14 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/tests/test_tardis_full_formal_integral/test_transport_simple_formal_integral Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/tests/test_tardis_full_formal_integral/test_transport_simple_formal_integral
Displaying heatmap for key /simulation_container/transport/transport_state/last_interaction_in_nu in file test_simulation__-1-macroatom__.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 2.8 |
| max | 5.5 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 1.6e-15 |
| max | 3.1e-15 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/tests/test_tardis_full_formal_integral/test_transport_simple_formal_integral Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/tests/test_tardis_full_formal_integral/test_transport_simple_formal_integral Displaying heatmap for key /simulation_container/transport/transport_state/j_estimator in file test_simulation__-1-macroatom__.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 0.096 |
| max | 0.12 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 1.9e-15 |
| max | 2.7e-15 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/tests/test_tardis_full_formal_integral/test_transport_simple_formal_integral Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/tests/test_tardis_full_formal_integral/test_transport_simple_formal_integral
Displaying heatmap for key /simulation_container/transport/transport_state/nu_bar_estimator in file test_simulation__-1-macroatom__.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 9.6e+13 |
| max | 1.4e+14 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 2.4e-15 |
| max | 3.6e-15 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/tests/test_tardis_full_formal_integral/test_transport_simple_formal_integral Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/tests/test_tardis_full_formal_integral/test_transport_simple_formal_integral Displaying heatmap for key /simulation_container/transport/transport_state/output_nu in file test_simulation__-1-macroatom__.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 3 |
| max | 6 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 4.5e-15 |
| max | 9e-15 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/tests/test_tardis_full_formal_integral/test_transport_simple_formal_integral Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/tests/test_tardis_full_formal_integral/test_transport_simple_formal_integral
Displaying heatmap for key /simulation_container/transport/transport_state/j_blue_estimator in file test_simulation__-1-macroatom__.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 4.6e-36 | 9.2e-36 | 1.1e-35 | 1.2e-35 | 1.2e-35 | 1.2e-35 | 1.2e-35 | 1.1e-35 | 1.1e-35 | 1.2e-35 | 1.1e-35 | 1.1e-35 | 1.1e-35 | 1.1e-35 | 1e-35 | 1.1e-35 | 1.1e-35 | 1.1e-35 | 1.1e-35 | 1e-35 |
| max | 7.7e-34 | 7.7e-34 | 1.2e-33 | 7.7e-34 | 7.7e-34 | 7.7e-34 | 7.7e-34 | 7.7e-34 | 5.8e-34 | 7.7e-34 | 5.8e-34 | 5.8e-34 | 3.9e-34 | 3.9e-34 | 5.8e-34 | 5.8e-34 | 3.9e-34 | 5.8e-34 | 3.9e-34 | 3.9e-34 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 4.1e-18 | 1e-17 | 1.2e-17 | 1.4e-17 | 1.6e-17 | 1.7e-17 | 2e-17 | 1.9e-17 | 2e-17 | 2.2e-17 | 2.1e-17 | 2.3e-17 | 2.4e-17 | 2.4e-17 | 2.2e-17 | 2.4e-17 | 2.5e-17 | 2.4e-17 | 2.5e-17 | 2.5e-17 |
| max | 4.4e-16 | 4.4e-16 | 5.1e-16 | 4.4e-16 | 7.7e-16 | 7.2e-16 | 1e-15 | 5.3e-16 | 5.3e-16 | 5.8e-16 | 6.5e-16 | 1.1e-15 | 1.4e-15 | 6.8e-16 | 7.9e-16 | 1.4e-15 | 1e-15 | 8.8e-16 | 8.8e-16 | 8.8e-16 |
Significant difference detected in test_simulation__-1-macroatom__.h5, key=/simulation_container/spectrum_solver/spectrum_integrated/luminosity Maximum relative difference: 5.51e-12 (Versions differ by 5.51e-10%)
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/tests/test_tardis_full_formal_integral/test_transport_simple_formal_integral Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/tests/test_tardis_full_formal_integral/test_transport_simple_formal_integral Displaying heatmap for key /simulation_container/spectrum_solver/spectrum_integrated/luminosity in file test_simulation__-1-macroatom__.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 3.4e+24 |
| max | 6.6e+24 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 2.8e-12 |
| max | 5.5e-12 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/tests/test_tardis_full_formal_integral/test_transport_simple_formal_integral Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/tests/test_tardis_full_formal_integral/test_transport_simple_formal_integral Displaying heatmap for key /simulation_container/transport/transport_state/packet_luminosity in file test_simulation__-1-macroatom__.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 6.2e+23 |
| max | 1.2e+24 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 4.5e-15 |
| max | 9e-15 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/tests/test_tardis_full_formal_integral/test_transport_simple_formal_integral Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/tests/test_tardis_full_formal_integral/test_transport_simple_formal_integral
Significant difference detected in test_simulation__-1-macroatom__.h5, key=/simulation_container/spectrum_solver/spectrum_integrated/luminosity_density_lambda Maximum relative difference: 5.51e-12 (Versions differ by 5.51e-10%)
Displaying heatmap for key /simulation_container/spectrum_solver/spectrum_integrated/luminosity_density_lambda in file test_simulation__-1-macroatom__.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 2.1e+32 |
| max | 4.1e+32 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 2.8e-12 |
| max | 5.5e-12 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/tests/test_tardis_full_formal_integral/test_transport_simple_formal_integral Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/tests/test_tardis_full_formal_integral/test_transport_simple_formal_integral
Displaying heatmap for key /simulation_container/transport/transport_state/output_energy in file test_simulation__-1-macroatom__.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 4.4e-20 |
| max | 8.8e-20 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 4.5e-15 |
| max | 9e-15 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/tests/test_tardis_full_formal_integral/test_transport_simple_formal_integral Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/tests/test_tardis_full_formal_integral/test_transport_simple_formal_integral ================================================== Summary for test_simulation__-1-macroatom__.h5: Total number of keys- in ref1: 24, in ref2: 24 Number of keys with different names in ref1 and ref2: 0 Number of keys with same name but different data in ref1 and ref2: 10 Number of totally same keys: 14 ==================================================
Significant difference detected in test_simulation__-1-downbranch__.h5, key=/simulation_container/transport/transport_state/last_interaction_in_r Maximum relative difference: 1.97e-13 (Versions differ by 1.97e-11%)
Displaying heatmap for key /simulation_container/transport/transport_state/last_interaction_in_r in file test_simulation__-1-downbranch__.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 1.9e+02 |
| max | 3.8e+02 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 9.8e-14 |
| max | 2e-13 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/tests/test_tardis_full_formal_integral/test_transport_simple_formal_integral Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/tests/test_tardis_full_formal_integral/test_transport_simple_formal_integral
Significant difference detected in test_simulation__-1-downbranch__.h5, key=/simulation_container/transport/transport_state/last_interaction_in_nu Maximum relative difference: 1.27e-14 (Versions differ by 1.27e-12%)
Displaying heatmap for key /simulation_container/transport/transport_state/last_interaction_in_nu in file test_simulation__-1-downbranch__.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 6.6 |
| max | 13 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 6.4e-15 |
| max | 1.3e-14 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/tests/test_tardis_full_formal_integral/test_transport_simple_formal_integral Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/tests/test_tardis_full_formal_integral/test_transport_simple_formal_integral Displaying heatmap for key /simulation_container/transport/transport_state/j_estimator in file test_simulation__-1-downbranch__.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 0.12 |
| max | 0.17 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 1.7e-15 |
| max | 2.4e-15 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/tests/test_tardis_full_formal_integral/test_transport_simple_formal_integral Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/tests/test_tardis_full_formal_integral/test_transport_simple_formal_integral
Displaying heatmap for key /simulation_container/transport/transport_state/nu_bar_estimator in file test_simulation__-1-downbranch__.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 1.1e+14 |
| max | 1.6e+14 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 1.7e-15 |
| max | 2.3e-15 |
Significant difference detected in test_simulation__-1-downbranch__.h5, key=/simulation_container/transport/transport_state/output_nu Maximum relative difference: 1.97e-14 (Versions differ by 1.97e-12%)
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/tests/test_tardis_full_formal_integral/test_transport_simple_formal_integral Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/tests/test_tardis_full_formal_integral/test_transport_simple_formal_integral Displaying heatmap for key /simulation_container/transport/transport_state/output_nu in file test_simulation__-1-downbranch__.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 9.9 |
| max | 20 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 9.8e-15 |
| max | 2e-14 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/tests/test_tardis_full_formal_integral/test_transport_simple_formal_integral Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/tests/test_tardis_full_formal_integral/test_transport_simple_formal_integral
Displaying heatmap for key /simulation_container/transport/transport_state/j_blue_estimator in file test_simulation__-1-downbranch__.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 5.1e-36 | 1.1e-35 | 1.2e-35 | 1.2e-35 | 1.3e-35 | 1.2e-35 | 1.2e-35 | 1.2e-35 | 1.2e-35 | 1.2e-35 | 1.1e-35 | 1.1e-35 | 1e-35 | 1.1e-35 | 1e-35 | 1.1e-35 | 1.1e-35 | 1.1e-35 | 1e-35 | 1.1e-35 |
| max | 7.7e-34 | 1.2e-33 | 7.7e-34 | 7.7e-34 | 7.7e-34 | 7.7e-34 | 7.7e-34 | 7.7e-34 | 7.7e-34 | 7.7e-34 | 5.8e-34 | 7.7e-34 | 5.8e-34 | 5.8e-34 | 5.8e-34 | 5.8e-34 | 5.8e-34 | 3.9e-34 | 7.7e-34 | 5.8e-34 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 3.8e-18 | 1.1e-17 | 1.3e-17 | 1.5e-17 | 1.6e-17 | 1.8e-17 | 1.8e-17 | 1.8e-17 | 2e-17 | 2.2e-17 | 2.1e-17 | 2.2e-17 | 2.2e-17 | 2.3e-17 | 2.4e-17 | 2.6e-17 | 2.6e-17 | 2.6e-17 | 2.6e-17 | 2.5e-17 |
| max | 4.1e-16 | 4.2e-16 | 4.3e-16 | 7.2e-16 | 5.4e-16 | 7.8e-16 | 6.4e-16 | 8.1e-16 | 8.1e-16 | 9.8e-16 | 1.1e-15 | 1.3e-15 | 1.6e-15 | 7.3e-16 | 9.5e-16 | 1.2e-15 | 6.1e-16 | 1.1e-15 | 1.6e-15 | 9.4e-16 |
Significant difference detected in test_simulation__-1-downbranch__.h5, key=/simulation_container/spectrum_solver/spectrum_integrated/luminosity Maximum relative difference: 4.73e-12 (Versions differ by 4.73e-10%)
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/tests/test_tardis_full_formal_integral/test_transport_simple_formal_integral Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/tests/test_tardis_full_formal_integral/test_transport_simple_formal_integral Displaying heatmap for key /simulation_container/spectrum_solver/spectrum_integrated/luminosity in file test_simulation__-1-downbranch__.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 3.4e+24 |
| max | 6.6e+24 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 2.5e-12 |
| max | 4.7e-12 |
Significant difference detected in test_simulation__-1-downbranch__.h5, key=/simulation_container/transport/transport_state/packet_luminosity Maximum relative difference: 1.99e-14 (Versions differ by 1.99e-12%)
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/tests/test_tardis_full_formal_integral/test_transport_simple_formal_integral Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/tests/test_tardis_full_formal_integral/test_transport_simple_formal_integral Displaying heatmap for key /simulation_container/transport/transport_state/packet_luminosity in file test_simulation__-1-downbranch__.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 1.2e+24 |
| max | 2.5e+24 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 1e-14 |
| max | 2e-14 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/tests/test_tardis_full_formal_integral/test_transport_simple_formal_integral Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/tests/test_tardis_full_formal_integral/test_transport_simple_formal_integral
Significant difference detected in test_simulation__-1-downbranch__.h5, key=/simulation_container/spectrum_solver/spectrum_integrated/luminosity_density_lambda Maximum relative difference: 4.73e-12 (Versions differ by 4.73e-10%)
Displaying heatmap for key /simulation_container/spectrum_solver/spectrum_integrated/luminosity_density_lambda in file test_simulation__-1-downbranch__.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 1.3e+32 |
| max | 2.4e+32 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 2.5e-12 |
| max | 4.7e-12 |
Significant difference detected in test_simulation__-1-downbranch__.h5, key=/simulation_container/transport/transport_state/output_energy Maximum relative difference: 1.99e-14 (Versions differ by 1.99e-12%)
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/tests/test_tardis_full_formal_integral/test_transport_simple_formal_integral Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/tests/test_tardis_full_formal_integral/test_transport_simple_formal_integral Displaying heatmap for key /simulation_container/transport/transport_state/output_energy in file test_simulation__-1-downbranch__.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 8.8e-20 |
| max | 1.8e-19 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 9.9e-15 |
| max | 2e-14 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/tests/test_tardis_full_formal_integral/test_transport_simple_formal_integral Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/tests/test_tardis_full_formal_integral/test_transport_simple_formal_integral ================================================== Summary for test_simulation__-1-downbranch__.h5: Total number of keys- in ref1: 24, in ref2: 24 Number of keys with different names in ref1 and ref2: 0 Number of keys with same name but different data in ref1 and ref2: 10 Number of totally same keys: 14 ==================================================
Significant difference detected in test_simulation__30-downbranch__.h5, key=/simulation_container/transport/transport_state/last_interaction_in_r Maximum relative difference: 1.97e-13 (Versions differ by 1.97e-11%)
Displaying heatmap for key /simulation_container/transport/transport_state/last_interaction_in_r in file test_simulation__30-downbranch__.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 1.9e+02 |
| max | 3.8e+02 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 9.8e-14 |
| max | 2e-13 |
Significant difference detected in test_simulation__30-downbranch__.h5, key=/simulation_container/transport/transport_state/last_interaction_in_nu Maximum relative difference: 1.27e-14 (Versions differ by 1.27e-12%)
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/tests/test_tardis_full_formal_integral/test_transport_simple_formal_integral Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/tests/test_tardis_full_formal_integral/test_transport_simple_formal_integral Displaying heatmap for key /simulation_container/transport/transport_state/last_interaction_in_nu in file test_simulation__30-downbranch__.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 6.6 |
| max | 13 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 6.4e-15 |
| max | 1.3e-14 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/tests/test_tardis_full_formal_integral/test_transport_simple_formal_integral Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/tests/test_tardis_full_formal_integral/test_transport_simple_formal_integral Displaying heatmap for key /simulation_container/transport/transport_state/j_estimator in file test_simulation__30-downbranch__.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 0.12 |
| max | 0.17 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 1.7e-15 |
| max | 2.4e-15 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/tests/test_tardis_full_formal_integral/test_transport_simple_formal_integral Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/tests/test_tardis_full_formal_integral/test_transport_simple_formal_integral
Displaying heatmap for key /simulation_container/transport/transport_state/nu_bar_estimator in file test_simulation__30-downbranch__.h5
Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 1.1e+14 |
| max | 1.6e+14 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 1.7e-15 |
| max | 2.3e-15 |
Significant difference detected in test_simulation__30-downbranch__.h5, key=/simulation_container/transport/transport_state/output_nu Maximum relative difference: 1.97e-14 (Versions differ by 1.97e-12%)
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/tests/test_tardis_full_formal_integral/test_transport_simple_formal_integral Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/tests/test_tardis_full_formal_integral/test_transport_simple_formal_integral Displaying heatmap for key /simulation_container/transport/transport_state/output_nu in file test_simulation__30-downbranch__.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 9.9 |
| max | 20 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 9.8e-15 |
| max | 2e-14 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/tests/test_tardis_full_formal_integral/test_transport_simple_formal_integral Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/tests/test_tardis_full_formal_integral/test_transport_simple_formal_integral
Displaying heatmap for key /simulation_container/transport/transport_state/j_blue_estimator in file test_simulation__30-downbranch__.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 5.1e-36 | 1.1e-35 | 1.2e-35 | 1.2e-35 | 1.3e-35 | 1.2e-35 | 1.2e-35 | 1.2e-35 | 1.2e-35 | 1.2e-35 | 1.1e-35 | 1.1e-35 | 1e-35 | 1.1e-35 | 1e-35 | 1.1e-35 | 1.1e-35 | 1.1e-35 | 1e-35 | 1.1e-35 |
| max | 7.7e-34 | 1.2e-33 | 7.7e-34 | 7.7e-34 | 7.7e-34 | 7.7e-34 | 7.7e-34 | 7.7e-34 | 7.7e-34 | 7.7e-34 | 5.8e-34 | 7.7e-34 | 5.8e-34 | 5.8e-34 | 5.8e-34 | 5.8e-34 | 5.8e-34 | 3.9e-34 | 7.7e-34 | 5.8e-34 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 3.8e-18 | 1.1e-17 | 1.3e-17 | 1.5e-17 | 1.6e-17 | 1.8e-17 | 1.8e-17 | 1.8e-17 | 2e-17 | 2.2e-17 | 2.1e-17 | 2.2e-17 | 2.2e-17 | 2.3e-17 | 2.4e-17 | 2.6e-17 | 2.6e-17 | 2.6e-17 | 2.6e-17 | 2.5e-17 |
| max | 4.1e-16 | 4.2e-16 | 4.3e-16 | 7.2e-16 | 5.4e-16 | 7.8e-16 | 6.4e-16 | 8.1e-16 | 8.1e-16 | 9.8e-16 | 1.1e-15 | 1.3e-15 | 1.6e-15 | 7.3e-16 | 9.5e-16 | 1.2e-15 | 6.1e-16 | 1.1e-15 | 1.6e-15 | 9.4e-16 |
Significant difference detected in test_simulation__30-downbranch__.h5, key=/simulation_container/spectrum_solver/spectrum_integrated/luminosity Maximum relative difference: 4.58e-12 (Versions differ by 4.58e-10%)
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/tests/test_tardis_full_formal_integral/test_transport_simple_formal_integral Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/tests/test_tardis_full_formal_integral/test_transport_simple_formal_integral Displaying heatmap for key /simulation_container/spectrum_solver/spectrum_integrated/luminosity in file test_simulation__30-downbranch__.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 3.1e+24 |
| max | 6e+24 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 2.4e-12 |
| max | 4.6e-12 |
Significant difference detected in test_simulation__30-downbranch__.h5, key=/simulation_container/transport/transport_state/packet_luminosity Maximum relative difference: 1.99e-14 (Versions differ by 1.99e-12%)
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/tests/test_tardis_full_formal_integral/test_transport_simple_formal_integral Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/tests/test_tardis_full_formal_integral/test_transport_simple_formal_integral Displaying heatmap for key /simulation_container/transport/transport_state/packet_luminosity in file test_simulation__30-downbranch__.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 1.2e+24 |
| max | 2.5e+24 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 1e-14 |
| max | 2e-14 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/tests/test_tardis_full_formal_integral/test_transport_simple_formal_integral Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/tests/test_tardis_full_formal_integral/test_transport_simple_formal_integral
Significant difference detected in test_simulation__30-downbranch__.h5, key=/simulation_container/spectrum_solver/spectrum_integrated/luminosity_density_lambda Maximum relative difference: 4.58e-12 (Versions differ by 4.58e-10%)
Displaying heatmap for key /simulation_container/spectrum_solver/spectrum_integrated/luminosity_density_lambda in file test_simulation__30-downbranch__.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 1.9e+32 |
| max | 3.7e+32 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 2.4e-12 |
| max | 4.6e-12 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/tests/test_tardis_full_formal_integral/test_transport_simple_formal_integral Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/tests/test_tardis_full_formal_integral/test_transport_simple_formal_integral
Significant difference detected in test_simulation__30-downbranch__.h5, key=/simulation_container/transport/transport_state/output_energy Maximum relative difference: 1.99e-14 (Versions differ by 1.99e-12%)
Displaying heatmap for key /simulation_container/transport/transport_state/output_energy in file test_simulation__30-downbranch__.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 8.8e-20 |
| max | 1.8e-19 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 9.9e-15 |
| max | 2e-14 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/tests/test_tardis_full_formal_integral/test_transport_simple_formal_integral Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/tests/test_tardis_full_formal_integral/test_transport_simple_formal_integral ================================================== Summary for test_simulation__30-downbranch__.h5: Total number of keys- in ref1: 24, in ref2: 24 Number of keys with different names in ref1 and ref2: 0 Number of keys with same name but different data in ref1 and ref2: 10 Number of totally same keys: 14 ==================================================
Significant difference detected in test_simulation__30-macroatom__.h5, key=/simulation_container/transport/transport_state/last_interaction_in_r Maximum relative difference: 5.89e-14 (Versions differ by 5.89e-12%)
Displaying heatmap for key /simulation_container/transport/transport_state/last_interaction_in_r in file test_simulation__30-macroatom__.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 37 |
| max | 74 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 3e-14 |
| max | 5.9e-14 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/tests/test_tardis_full_formal_integral/test_transport_simple_formal_integral Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/tests/test_tardis_full_formal_integral/test_transport_simple_formal_integral Displaying heatmap for key /simulation_container/transport/transport_state/last_interaction_in_nu in file test_simulation__30-macroatom__.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 2.8 |
| max | 5.5 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 1.6e-15 |
| max | 3.1e-15 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/tests/test_tardis_full_formal_integral/test_transport_simple_formal_integral Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/tests/test_tardis_full_formal_integral/test_transport_simple_formal_integral Displaying heatmap for key /simulation_container/transport/transport_state/j_estimator in file test_simulation__30-macroatom__.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 0.096 |
| max | 0.12 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 1.9e-15 |
| max | 2.7e-15 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/tests/test_tardis_full_formal_integral/test_transport_simple_formal_integral Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/tests/test_tardis_full_formal_integral/test_transport_simple_formal_integral
Displaying heatmap for key /simulation_container/transport/transport_state/nu_bar_estimator in file test_simulation__30-macroatom__.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 9.6e+13 |
| max | 1.4e+14 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 2.4e-15 |
| max | 3.6e-15 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/tests/test_tardis_full_formal_integral/test_transport_simple_formal_integral Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/tests/test_tardis_full_formal_integral/test_transport_simple_formal_integral Displaying heatmap for key /simulation_container/transport/transport_state/output_nu in file test_simulation__30-macroatom__.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 3 |
| max | 6 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 4.5e-15 |
| max | 9e-15 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/tests/test_tardis_full_formal_integral/test_transport_simple_formal_integral Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/tests/test_tardis_full_formal_integral/test_transport_simple_formal_integral
Displaying heatmap for key /simulation_container/transport/transport_state/j_blue_estimator in file test_simulation__30-macroatom__.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 4.6e-36 | 9.2e-36 | 1.1e-35 | 1.2e-35 | 1.2e-35 | 1.2e-35 | 1.2e-35 | 1.1e-35 | 1.1e-35 | 1.2e-35 | 1.1e-35 | 1.1e-35 | 1.1e-35 | 1.1e-35 | 1e-35 | 1.1e-35 | 1.1e-35 | 1.1e-35 | 1.1e-35 | 1e-35 |
| max | 7.7e-34 | 7.7e-34 | 1.2e-33 | 7.7e-34 | 7.7e-34 | 7.7e-34 | 7.7e-34 | 7.7e-34 | 5.8e-34 | 7.7e-34 | 5.8e-34 | 5.8e-34 | 3.9e-34 | 3.9e-34 | 5.8e-34 | 5.8e-34 | 3.9e-34 | 5.8e-34 | 3.9e-34 | 3.9e-34 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 4.1e-18 | 1e-17 | 1.2e-17 | 1.4e-17 | 1.6e-17 | 1.7e-17 | 2e-17 | 1.9e-17 | 2e-17 | 2.2e-17 | 2.1e-17 | 2.3e-17 | 2.4e-17 | 2.4e-17 | 2.2e-17 | 2.4e-17 | 2.5e-17 | 2.4e-17 | 2.5e-17 | 2.5e-17 |
| max | 4.4e-16 | 4.4e-16 | 5.1e-16 | 4.4e-16 | 7.7e-16 | 7.2e-16 | 1e-15 | 5.3e-16 | 5.3e-16 | 5.8e-16 | 6.5e-16 | 1.1e-15 | 1.4e-15 | 6.8e-16 | 7.9e-16 | 1.4e-15 | 1e-15 | 8.8e-16 | 8.8e-16 | 8.8e-16 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/tests/test_tardis_full_formal_integral/test_transport_simple_formal_integral Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/tests/test_tardis_full_formal_integral/test_transport_simple_formal_integral
Significant difference detected in test_simulation__30-macroatom__.h5, key=/simulation_container/spectrum_solver/spectrum_integrated/luminosity Maximum relative difference: 1.29e-12 (Versions differ by 1.29e-10%)
Displaying heatmap for key /simulation_container/spectrum_solver/spectrum_integrated/luminosity in file test_simulation__30-macroatom__.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 4.7e+24 |
| max | 9.1e+24 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 6.6e-13 |
| max | 1.3e-12 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/tests/test_tardis_full_formal_integral/test_transport_simple_formal_integral Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/tests/test_tardis_full_formal_integral/test_transport_simple_formal_integral Displaying heatmap for key /simulation_container/transport/transport_state/packet_luminosity in file test_simulation__30-macroatom__.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 6.2e+23 |
| max | 1.2e+24 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 4.5e-15 |
| max | 9e-15 |
Significant difference detected in test_simulation__30-macroatom__.h5, key=/simulation_container/spectrum_solver/spectrum_integrated/luminosity_density_lambda Maximum relative difference: 1.29e-12 (Versions differ by 1.29e-10%)
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/tests/test_tardis_full_formal_integral/test_transport_simple_formal_integral Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/tests/test_tardis_full_formal_integral/test_transport_simple_formal_integral Displaying heatmap for key /simulation_container/spectrum_solver/spectrum_integrated/luminosity_density_lambda in file test_simulation__30-macroatom__.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 2.7e+32 |
| max | 5.3e+32 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 6.6e-13 |
| max | 1.3e-12 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/tests/test_tardis_full_formal_integral/test_transport_simple_formal_integral Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/tests/test_tardis_full_formal_integral/test_transport_simple_formal_integral
Displaying heatmap for key /simulation_container/transport/transport_state/output_energy in file test_simulation__30-macroatom__.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 4.4e-20 |
| max | 8.8e-20 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 4.5e-15 |
| max | 9e-15 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/tests/test_tardis_full_formal_integral/test_transport_simple_formal_integral Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/tests/test_tardis_full_formal_integral/test_transport_simple_formal_integral
================================================== Summary for test_simulation__30-macroatom__.h5: Total number of keys- in ref1: 24, in ref2: 24 Number of keys with different names in ref1 and ref2: 0 Number of keys with same name but different data in ref1 and ref2: 10 Number of totally same keys: 14 ==================================================
Significant difference detected in TestTransportSimple.h5, key=/simulation/transport/transport_state/virt_packet_last_interaction_in_r Maximum relative difference: 1.42e-13 (Versions differ by 1.42e-11%)
Displaying heatmap for key /simulation/transport/transport_state/virt_packet_last_interaction_in_r in file TestTransportSimple.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 1e+02 |
| max | 2.1e+02 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 7.1e-14 |
| max | 1.4e-13 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/tests/test_tardis_full/test_transport_simple Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/tests/test_tardis_full/test_transport_simple Displaying heatmap for key /simulation/transport/transport_state/j_blue_estimator in file TestTransportSimple.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 5.2e-36 | 1e-35 | 1.2e-35 | 1.1e-35 | 1.2e-35 | 1.2e-35 | 1.1e-35 | 1.1e-35 | 1.1e-35 | 1.2e-35 | 1.1e-35 | 1.1e-35 | 1.1e-35 | 1e-35 | 1e-35 | 1.1e-35 | 1.1e-35 | 1e-35 | 1e-35 | 1.1e-35 |
| max | 1.5e-33 | 7.7e-34 | 1.2e-33 | 7.7e-34 | 7.7e-34 | 7.7e-34 | 7.7e-34 | 7.7e-34 | 5.8e-34 | 5.8e-34 | 7.7e-34 | 5.8e-34 | 5.8e-34 | 3.9e-34 | 5.8e-34 | 5.8e-34 | 5.8e-34 | 3.9e-34 | 5.8e-34 | 7.7e-34 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 4.3e-18 | 9.8e-18 | 1.3e-17 | 1.5e-17 | 1.7e-17 | 1.7e-17 | 1.8e-17 | 1.8e-17 | 1.9e-17 | 2.1e-17 | 2e-17 | 2.1e-17 | 2.2e-17 | 2.2e-17 | 2.2e-17 | 2.3e-17 | 2.5e-17 | 2.5e-17 | 2.5e-17 | 2.6e-17 |
| max | 4.8e-16 | 4.2e-16 | 4.5e-16 | 6.4e-16 | 6.1e-16 | 5.4e-16 | 5.2e-16 | 5.2e-16 | 6e-16 | 6.1e-16 | 7.9e-16 | 7e-16 | 6.5e-16 | 5.4e-16 | 6.3e-16 | 1.3e-15 | 1.2e-15 | 1.3e-15 | 8.5e-16 | 1.1e-15 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/tests/test_tardis_full/test_transport_simple Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/tests/test_tardis_full/test_transport_simple
Significant difference detected in TestTransportSimple.h5, key=/simulation/plasma/level_number_density Maximum relative difference: 2.16e-13 (Versions differ by 2.16e-11%)
Displaying heatmap for key /simulation/plasma/level_number_density in file TestTransportSimple.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 4.9e-11 | 1.1e-10 | 7.4e-11 | 8.6e-11 | 2.5e-23 | 3.7e-11 | 2e-11 | 4.9e-23 | 1.8e-11 | 2.4e-11 | 1.4e-11 | 2.6e-11 | 8.6e-12 | 7.5e-12 | 7.7e-25 | 7.7e-12 | 7.1e-12 | 1.1e-27 | 7.6e-27 | 2.9e-12 |
| max | 4.8e-08 | 1.2e-07 | 6e-08 | 6e-08 | 1.1e-19 | 3e-08 | 3e-08 | 2.2e-19 | 3e-08 | 2.2e-08 | 1.5e-08 | 3e-08 | 7.5e-09 | 7.5e-09 | 3.4e-21 | 7.5e-09 | 7.5e-09 | 3.3e-24 | 1.3e-23 | 1.9e-09 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 6.9e-15 | 1.3e-14 | 1.4e-14 | 2e-14 | 3.8e-19 | 1.3e-14 | 7.1e-15 | 2.3e-19 | 7.9e-15 | 2.1e-14 | 1.4e-14 | 3.4e-14 | 1.4e-14 | 1.3e-14 | 2.5e-19 | 2e-14 | 2.6e-14 | 2.3e-19 | 3.1e-19 | 2e-14 |
| max | 4.3e-14 | 8.5e-14 | 9.5e-14 | 1.3e-13 | 3.6e-16 | 9.2e-14 | 5e-14 | 3.3e-16 | 5e-14 | 1.4e-13 | 8.6e-14 | 2.2e-13 | 9.3e-14 | 8.6e-14 | 2.4e-16 | 1.4e-13 | 1.7e-13 | 3.9e-16 | 2.8e-16 | 1.3e-13 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/tests/test_tardis_full/test_transport_simple Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/tests/test_tardis_full/test_transport_simple
Displaying heatmap for key /simulation/simulation_state/t_radiative in file TestTransportSimple.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 6.2e-12 |
| max | 9.1e-12 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 5.8e-16 |
| max | 8.5e-16 |
Significant difference detected in TestTransportSimple.h5, key=/simulation/plasma/level_boltzmann_factor Maximum relative difference: 1.71e-13 (Versions differ by 1.71e-11%)
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/tests/test_tardis_full/test_transport_simple Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/tests/test_tardis_full/test_transport_simple Displaying heatmap for key /simulation/plasma/level_boltzmann_factor in file TestTransportSimple.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 3.2e-18 | 6.4e-18 | 6.1e-18 | 9.3e-18 | 3.2e-21 | 6.4e-18 | 3.4e-18 | 2.4e-23 | 2.9e-18 | 8.9e-18 | 5.9e-18 | 1.5e-17 | 5.5e-18 | 5.4e-18 | 1.3e-20 | 8.2e-18 | 1e-17 | 7.3e-23 | 7.3e-23 | 7.3e-18 |
| max | 8.9e-16 | 8.9e-16 | 8.9e-16 | 1.1e-15 | 1.4e-17 | 8.9e-16 | 8.9e-16 | 1.1e-19 | 4.4e-16 | 1.3e-15 | 8.9e-16 | 1.8e-15 | 8.9e-16 | 8.9e-16 | 5.6e-17 | 1.3e-15 | 1.3e-15 | 2.2e-19 | 2.2e-19 | 1.3e-15 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 5.9e-15 | 1.2e-14 | 1.2e-14 | 1.8e-14 | 3.5e-19 | 1.2e-14 | 5.9e-15 | 1.7e-19 | 5.9e-15 | 1.8e-14 | 1.2e-14 | 2.9e-14 | 1.2e-14 | 1.2e-14 | 2.9e-19 | 1.8e-14 | 2.3e-14 | 2.3e-19 | 3.2e-19 | 1.8e-14 |
| max | 5.7e-14 | 8.5e-14 | 8.5e-14 | 1.1e-13 | 2.9e-16 | 8.5e-14 | 5.7e-14 | 3.9e-16 | 5.7e-14 | 1.1e-13 | 8.5e-14 | 1.7e-13 | 8.5e-14 | 8.5e-14 | 2.4e-16 | 1.1e-13 | 1.4e-13 | 2.8e-16 | 2e-16 | 1.1e-13 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/tests/test_tardis_full/test_transport_simple Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/tests/test_tardis_full/test_transport_simple
Significant difference detected in TestTransportSimple.h5, key=/simulation/spectrum_solver/spectrum_real_packets_reabsorbed/luminosity_density_lambda Maximum relative difference: 4.34e-13 (Versions differ by 4.34e-11%)
Displaying heatmap for key /simulation/spectrum_solver/spectrum_real_packets_reabsorbed/luminosity_density_lambda in file TestTransportSimple.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 9.8e+33 |
| max | 1.9e+34 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 2.2e-13 |
| max | 4.3e-13 |
Significant difference detected in TestTransportSimple.h5, key=/simulation/transport/transport_state/last_interaction_in_r Maximum relative difference: 1.42e-13 (Versions differ by 1.42e-11%)
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/tests/test_tardis_full/test_transport_simple Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/tests/test_tardis_full/test_transport_simple Displaying heatmap for key /simulation/transport/transport_state/last_interaction_in_r in file TestTransportSimple.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 95 |
| max | 1.9e+02 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 7.1e-14 |
| max | 1.4e-13 |
Significant difference detected in TestTransportSimple.h5, key=/simulation/spectrum_solver/spectrum_integrated/luminosity_density_lambda Maximum relative difference: 1.00e-12 (Versions differ by 1.00e-10%)
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/tests/test_tardis_full/test_transport_simple Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/tests/test_tardis_full/test_transport_simple
Displaying heatmap for key /simulation/spectrum_solver/spectrum_integrated/luminosity_density_lambda in file TestTransportSimple.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 2.5e+32 |
| max | 4.9e+32 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 5.2e-13 |
| max | 1e-12 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/tests/test_tardis_full/test_transport_simple Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/tests/test_tardis_full/test_transport_simple
Significant difference detected in TestTransportSimple.h5, key=/simulation/plasma/phi Maximum relative difference: 6.87e-13 (Versions differ by 6.87e-11%)
Displaying heatmap for key /simulation/plasma/phi in file TestTransportSimple.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 1e+02 | 1.9e+02 | 2.3e+02 | 2.9e+02 | 0 | 1.7e+02 | 1.3e+02 | 3.9e-256 | 1e+02 | 2.6e+02 | 1.1e+02 | 4.4e+02 | 1.8e+02 | 1.7e+02 | 0 | 2e+02 | 3.3e+02 | 0 | 0 | 1.9e+02 |
| max | 7.2e+03 | 1.1e+04 | 1.4e+04 | 1.9e+04 | 0 | 1.1e+04 | 8.2e+03 | 3.4e-254 | 5.1e+03 | 1.5e+04 | 7.2e+03 | 2.7e+04 | 1.1e+04 | 1e+04 | 0 | 1.1e+04 | 2e+04 | 0 | 0 | 1.1e+04 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 3.7e-14 | 8e-14 | 8e-14 | 1.1e-13 | 0 | 7.7e-14 | 4.2e-14 | 2.7e-18 | 4e-14 | 1.2e-13 | 7.3e-14 | 2e-13 | 8.1e-14 | 7.8e-14 | 0 | 1.1e-13 | 1.4e-13 | 0 | 0 | 1.1e-13 |
| max | 1.1e-13 | 3.4e-13 | 3.4e-13 | 4.6e-13 | 0 | 3.4e-13 | 1.1e-13 | 1.8e-16 | 1.1e-13 | 4.6e-13 | 2.3e-13 | 6.9e-13 | 3.7e-13 | 3.4e-13 | 0 | 3.4e-13 | 4.6e-13 | 0 | 0 | 3.4e-13 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/tests/test_tardis_full/test_transport_simple Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/tests/test_tardis_full/test_transport_simple
Significant difference detected in TestTransportSimple.h5, key=/simulation/transport/transport_state/virt_packet_energies Maximum relative difference: 1.86e-12 (Versions differ by 1.86e-10%)
Displaying heatmap for key /simulation/transport/transport_state/virt_packet_energies in file TestTransportSimple.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 5.3e-20 |
| max | 1.1e-19 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 9.3e-13 |
| max | 1.9e-12 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/tests/test_tardis_full/test_transport_simple Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/tests/test_tardis_full/test_transport_simple Displaying heatmap for key /simulation/plasma/beta_rad in file TestTransportSimple.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 0.00042 |
| max | 0.00061 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 6.2e-16 |
| max | 9e-16 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/tests/test_tardis_full/test_transport_simple Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/tests/test_tardis_full/test_transport_simple Displaying heatmap for key /simulation/plasma/w in file TestTransportSimple.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 5.5e-16 |
| max | 8.9e-16 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 2.4e-15 |
| max | 3.5e-15 |
Significant difference detected in TestTransportSimple.h5, key=/simulation/spectrum_solver/spectrum_integrated/luminosity Maximum relative difference: 1.00e-12 (Versions differ by 1.00e-10%)
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/tests/test_tardis_full/test_transport_simple Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/tests/test_tardis_full/test_transport_simple Displaying heatmap for key /simulation/spectrum_solver/spectrum_integrated/luminosity in file TestTransportSimple.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 2.5e+24 |
| max | 4.8e+24 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 5.2e-13 |
| max | 1e-12 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/tests/test_tardis_full/test_transport_simple Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/tests/test_tardis_full/test_transport_simple Displaying heatmap for key /simulation/plasma/t_rad in file TestTransportSimple.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 6.2e-12 |
| max | 9.1e-12 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 5.8e-16 |
| max | 8.5e-16 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/tests/test_tardis_full/test_transport_simple Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/tests/test_tardis_full/test_transport_simple Displaying heatmap for key /simulation/plasma/electron_densities in file TestTransportSimple.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 2.7e-07 |
| max | 4.8e-07 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 2.2e-16 |
| max | 3.6e-16 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/tests/test_tardis_full/test_transport_simple Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/tests/test_tardis_full/test_transport_simple
Significant difference detected in TestTransportSimple.h5, key=/simulation/plasma/tau_sobolevs Maximum relative difference: 3.64e-13 (Versions differ by 3.64e-11%)
Displaying heatmap for key /simulation/plasma/tau_sobolevs in file TestTransportSimple.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 4.3e-12 | 8.3e-12 | 7e-12 | 7.6e-12 | 1e-22 | 3e-12 | 1.3e-12 | 1.2e-23 | 1.2e-12 | 1.5e-12 | 1.3e-12 | 2.1e-12 | 6.2e-13 | 4.9e-13 | 2.5e-27 | 5.1e-13 | 5.7e-13 | 6.3e-28 | 4.6e-27 | 1.7e-13 |
| max | 1.3e-08 | 6e-08 | 6e-08 | 6e-08 | 1.1e-18 | 3e-08 | 1.5e-08 | 1.1e-19 | 1.5e-08 | 7.5e-09 | 1.5e-08 | 2.2e-08 | 3.7e-09 | 3.7e-09 | 4.3e-23 | 3.7e-09 | 5.6e-09 | 1.3e-23 | 5.3e-23 | 3.7e-10 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 5.8e-15 | 1.1e-14 | 1.1e-14 | 1.5e-14 | 4.7e-19 | 1e-14 | 6.1e-15 | 4.1e-19 | 7e-15 | 1.6e-14 | 1.1e-14 | 2.6e-14 | 1e-14 | 1.1e-14 | 8.4e-19 | 1.5e-14 | 2e-14 | 8e-19 | 5.5e-19 | 1.5e-14 |
| max | 2.5e-13 | 2.4e-13 | 2.2e-13 | 3.3e-13 | 1e-15 | 2.8e-13 | 3.5e-13 | 1.1e-15 | 3.5e-13 | 2.3e-13 | 2.8e-13 | 3e-13 | 2.7e-13 | 3.5e-13 | 2.6e-15 | 2.8e-13 | 2.9e-13 | 1.8e-15 | 7.6e-16 | 3.6e-13 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/tests/test_tardis_full/test_transport_simple Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/tests/test_tardis_full/test_transport_simple
Significant difference detected in TestTransportSimple.h5, key=/simulation/transport/transport_state/output_energy Maximum relative difference: 1.87e-14 (Versions differ by 1.87e-12%)
Displaying heatmap for key /simulation/transport/transport_state/output_energy in file TestTransportSimple.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 1.9e-20 |
| max | 3.7e-20 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 9.3e-15 |
| max | 1.9e-14 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/tests/test_tardis_full/test_transport_simple Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/tests/test_tardis_full/test_transport_simple
Significant difference detected in TestTransportSimple.h5, key=/simulation/transport/transport_state/last_interaction_in_nu Maximum relative difference: 1.05e-14 (Versions differ by 1.05e-12%)
Displaying heatmap for key /simulation/transport/transport_state/last_interaction_in_nu in file TestTransportSimple.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 8.4 |
| max | 17 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 5.2e-15 |
| max | 1e-14 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/tests/test_tardis_full/test_transport_simple Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/tests/test_tardis_full/test_transport_simple
Significant difference detected in TestTransportSimple.h5, key=/simulation/plasma/general_level_boltzmann_factor Maximum relative difference: 1.71e-13 (Versions differ by 1.71e-11%)
Displaying heatmap for key /simulation/plasma/general_level_boltzmann_factor in file TestTransportSimple.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 3.2e-18 | 6.4e-18 | 6.1e-18 | 9.3e-18 | 3.2e-21 | 6.4e-18 | 3.4e-18 | 2.4e-23 | 2.9e-18 | 8.9e-18 | 5.9e-18 | 1.5e-17 | 5.5e-18 | 5.4e-18 | 1.3e-20 | 8.2e-18 | 1e-17 | 7.3e-23 | 7.3e-23 | 7.3e-18 |
| max | 8.9e-16 | 8.9e-16 | 8.9e-16 | 1.1e-15 | 1.4e-17 | 8.9e-16 | 8.9e-16 | 1.1e-19 | 4.4e-16 | 1.3e-15 | 8.9e-16 | 1.8e-15 | 8.9e-16 | 8.9e-16 | 5.6e-17 | 1.3e-15 | 1.3e-15 | 2.2e-19 | 2.2e-19 | 1.3e-15 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 5.9e-15 | 1.2e-14 | 1.2e-14 | 1.8e-14 | 3.5e-19 | 1.2e-14 | 5.9e-15 | 1.7e-19 | 5.9e-15 | 1.8e-14 | 1.2e-14 | 2.9e-14 | 1.2e-14 | 1.2e-14 | 2.9e-19 | 1.8e-14 | 2.3e-14 | 2.3e-19 | 3.2e-19 | 1.8e-14 |
| max | 5.7e-14 | 8.5e-14 | 8.5e-14 | 1.1e-13 | 2.9e-16 | 8.5e-14 | 5.7e-14 | 3.9e-16 | 5.7e-14 | 1.1e-13 | 8.5e-14 | 1.7e-13 | 8.5e-14 | 8.5e-14 | 2.4e-16 | 1.1e-13 | 1.4e-13 | 2.8e-16 | 2e-16 | 1.1e-13 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/tests/test_tardis_full/test_transport_simple Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/tests/test_tardis_full/test_transport_simple Displaying heatmap for key /simulation/simulation_state/dilution_factor in file TestTransportSimple.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 5.5e-16 |
| max | 8.9e-16 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 2.4e-15 |
| max | 3.5e-15 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/tests/test_tardis_full/test_transport_simple Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/tests/test_tardis_full/test_transport_simple
Significant difference detected in TestTransportSimple.h5, key=/simulation/transport/transport_state/virt_packet_initial_mus Maximum relative difference: 1.73e-09 (Versions differ by 1.73e-07%)
Displaying heatmap for key /simulation/transport/transport_state/virt_packet_initial_mus in file TestTransportSimple.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 8.1e-13 |
| max | 1.6e-12 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 8.7e-10 |
| max | 1.7e-09 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/tests/test_tardis_full/test_transport_simple Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/tests/test_tardis_full/test_transport_simple
Displaying heatmap for key /simulation/plasma/g_electron in file TestTransportSimple.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 2.7e+06 |
| max | 4.2e+06 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 1e-15 |
| max | 1.6e-15 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/tests/test_tardis_full/test_transport_simple Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/tests/test_tardis_full/test_transport_simple
Significant difference detected in TestTransportSimple.h5, key=/simulation/plasma/transition_probabilities Maximum relative difference: 1.10e-12 (Versions differ by 1.10e-10%)
Displaying heatmap for key /simulation/plasma/transition_probabilities in file TestTransportSimple.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 4.9e-17 | 5.6e-17 | 4.4e-17 | 6.2e-17 | 7e-18 | 3.2e-17 | 2.5e-17 | 6.9e-18 | 2.1e-17 | 4.6e-17 | 3.5e-17 | 6.5e-17 | 3.3e-17 | 2.2e-17 | 1.8e-18 | 3.1e-17 | 3.6e-17 | 4.9e-18 | 1.9e-18 | 3e-17 |
| max | 2.2e-13 | 1.2e-13 | 1.1e-13 | 1.5e-13 | 1.5e-13 | 6.7e-14 | 7e-14 | 7.1e-14 | 9.2e-14 | 1.7e-13 | 1.4e-13 | 1.8e-13 | 1.8e-13 | 5.7e-14 | 3e-14 | 6.1e-14 | 8.1e-14 | 1.3e-13 | 2.7e-14 | 1.5e-13 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 2e-15 | 2.9e-15 | 2.1e-15 | 2.9e-15 | 5.2e-16 | 1.7e-15 | 1.6e-15 | 7.3e-16 | 1.5e-15 | 2.4e-15 | 2.4e-15 | 3.6e-15 | 1.8e-15 | 1.5e-15 | 1.6e-16 | 1.8e-15 | 2.1e-15 | 2.6e-16 | 3.1e-16 | 1.9e-15 |
| max | 1.1e-12 | 7.4e-13 | 5.7e-13 | 7.3e-13 | 7.7e-13 | 9e-13 | 8.6e-13 | 5.1e-13 | 4.4e-13 | 6.3e-13 | 8.8e-13 | 9.9e-13 | 9.6e-13 | 6.9e-13 | 1.9e-13 | 5.4e-13 | 9.1e-13 | 5.1e-13 | 1.5e-13 | 7.2e-13 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/tests/test_tardis_full/test_transport_simple Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/tests/test_tardis_full/test_transport_simple
Significant difference detected in TestTransportSimple.h5, key=/simulation/plasma/stimulated_emission_factor Maximum relative difference: 3.58e-13 (Versions differ by 3.58e-11%)
Displaying heatmap for key /simulation/plasma/stimulated_emission_factor in file TestTransportSimple.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 2.7e-16 | 3.2e-16 | 3.2e-16 | 3.1e-16 | 2.3e-20 | 3.1e-16 | 2.8e-16 | 3.8e-20 | 2.8e-16 | 3.4e-16 | 3.3e-16 | 3.3e-16 | 3.3e-16 | 3.4e-16 | 1.6e-19 | 3.5e-16 | 3.6e-16 | 1.5e-19 | 1.5e-19 | 3.4e-16 |
| max | 7.2e-15 | 1.2e-14 | 1.1e-14 | 1.2e-14 | 2.2e-16 | 1e-14 | 1.2e-14 | 2.2e-16 | 1e-14 | 1.2e-14 | 1e-14 | 1.2e-14 | 1.2e-14 | 9.5e-15 | 3.3e-16 | 1.1e-14 | 1.2e-14 | 2.2e-16 | 2.2e-16 | 1.2e-14 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 1.3e-15 | 1.6e-15 | 1.5e-15 | 1.3e-15 | 8.1e-20 | 1.5e-15 | 1.4e-15 | 9.2e-20 | 1.4e-15 | 1.4e-15 | 1.5e-15 | 1.5e-15 | 1.5e-15 | 1.6e-15 | 7.9e-19 | 1.4e-15 | 1.5e-15 | 5.5e-19 | 4e-19 | 1.4e-15 |
| max | 2.6e-13 | 2.6e-13 | 2e-13 | 3.5e-13 | 7.8e-16 | 2.6e-13 | 3.6e-13 | 9.4e-16 | 3.6e-13 | 2e-13 | 2.6e-13 | 2.5e-13 | 2.5e-13 | 3.3e-13 | 2.4e-15 | 2.5e-13 | 2.5e-13 | 1.7e-15 | 6.8e-16 | 3.4e-13 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/tests/test_tardis_full/test_transport_simple Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/tests/test_tardis_full/test_transport_simple
Significant difference detected in TestTransportSimple.h5, key=/simulation/transport/transport_state/virt_packet_initial_rs Maximum relative difference: 1.42e-13 (Versions differ by 1.42e-11%)
Displaying heatmap for key /simulation/transport/transport_state/virt_packet_initial_rs in file TestTransportSimple.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 1e+02 |
| max | 2.1e+02 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 7.1e-14 |
| max | 1.4e-13 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/tests/test_tardis_full/test_transport_simple Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/tests/test_tardis_full/test_transport_simple Displaying heatmap for key /simulation/iterations_t_rad in file TestTransportSimple.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 1.8e-12 | 2.5e-12 | 1.5e-12 | 2.9e-12 | 1.8e-12 | 2.2e-12 | 2.9e-12 | 1.8e-12 | 3.3e-12 | 3.3e-12 | 1.8e-12 | 2.2e-12 | 2.5e-12 | 3.3e-12 | 1.8e-12 | 3.3e-12 | 4e-12 | 1.8e-12 | 3.6e-13 | 7.3e-13 |
| max | 3.6e-12 | 7.3e-12 | 3.6e-12 | 5.5e-12 | 5.5e-12 | 3.6e-12 | 5.5e-12 | 3.6e-12 | 5.5e-12 | 7.3e-12 | 3.6e-12 | 9.1e-12 | 5.5e-12 | 5.5e-12 | 7.3e-12 | 5.5e-12 | 7.3e-12 | 3.6e-12 | 1.8e-12 | 3.6e-12 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 1.7e-16 | 2.4e-16 | 1.4e-16 | 2.7e-16 | 1.7e-16 | 2.1e-16 | 2.7e-16 | 1.7e-16 | 3.1e-16 | 3.1e-16 | 1.7e-16 | 2.1e-16 | 2.4e-16 | 3.2e-16 | 1.8e-16 | 3.2e-16 | 3.9e-16 | 1.8e-16 | 3.7e-17 | 7.1e-17 |
| max | 3.6e-16 | 6.9e-16 | 3.3e-16 | 5e-16 | 5e-16 | 3.6e-16 | 5e-16 | 3.6e-16 | 5.1e-16 | 6.7e-16 | 3.6e-16 | 8.5e-16 | 5.3e-16 | 5.2e-16 | 7.1e-16 | 5.5e-16 | 7e-16 | 3.6e-16 | 1.9e-16 | 3.6e-16 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/tests/test_tardis_full/test_transport_simple Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/tests/test_tardis_full/test_transport_simple Displaying heatmap for key /simulation/iterations_w in file TestTransportSimple.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 4.3e-16 | 3.3e-16 | 2.2e-16 | 5e-16 | 3.1e-16 | 8.3e-17 | 2e-16 | 2.1e-16 | 2.2e-16 | 1.2e-16 | 1.4e-16 | 1.1e-16 | 1.8e-16 | 1.2e-16 | 8.6e-17 | 5.6e-17 | 8e-17 | 7.5e-17 | 4.4e-17 | 4.7e-17 |
| max | 6.7e-16 | 1e-15 | 5.6e-16 | 8.9e-16 | 8.6e-16 | 2.5e-16 | 3.3e-16 | 4.4e-16 | 3.9e-16 | 3.3e-16 | 2.6e-16 | 2.5e-16 | 4e-16 | 2.2e-16 | 2.4e-16 | 1.4e-16 | 1.7e-16 | 1.8e-16 | 8.3e-17 | 1.2e-16 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 9.1e-16 | 8.9e-16 | 7.1e-16 | 1.9e-15 | 1.4e-15 | 4.3e-16 | 1.1e-15 | 1.3e-15 | 1.5e-15 | 9.2e-16 | 1.1e-15 | 9.3e-16 | 1.6e-15 | 1.2e-15 | 8.7e-16 | 5.9e-16 | 9.1e-16 | 8.9e-16 | 5.5e-16 | 6.1e-16 |
| max | 1.5e-15 | 2.6e-15 | 1.8e-15 | 3.5e-15 | 3.8e-15 | 1.3e-15 | 1.9e-15 | 2.8e-15 | 2.7e-15 | 2.5e-15 | 2.1e-15 | 2.2e-15 | 3.6e-15 | 2.1e-15 | 2.4e-15 | 1.5e-15 | 1.9e-15 | 2.2e-15 | 1.1e-15 | 1.6e-15 |
Significant difference detected in TestTransportSimple.h5, key=/simulation/plasma/beta_sobolev Maximum relative difference: 1.10e-12 (Versions differ by 1.10e-10%)
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/tests/test_tardis_full/test_transport_simple Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/tests/test_tardis_full/test_transport_simple Displaying heatmap for key /simulation/plasma/beta_sobolev in file TestTransportSimple.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 5.5e-16 | 7.2e-16 | 5.1e-16 | 7.5e-16 | 3.2e-17 | 4.3e-16 | 2.6e-16 | 3.4e-17 | 2.2e-16 | 4.3e-16 | 3.7e-16 | 6.7e-16 | 2.8e-16 | 2.5e-16 | 7e-18 | 2.9e-16 | 3.8e-16 | 2.4e-17 | 6.7e-18 | 2.7e-16 |
| max | 1.1e-12 | 7.4e-13 | 5.8e-13 | 7.3e-13 | 7.9e-13 | 9e-13 | 8.7e-13 | 5.1e-13 | 4.4e-13 | 7.2e-13 | 8.8e-13 | 9.7e-13 | 9.5e-13 | 6.9e-13 | 2.1e-13 | 5.3e-13 | 9e-13 | 5.1e-13 | 1.5e-13 | 7.7e-13 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 6.4e-16 | 9e-16 | 6.8e-16 | 1e-15 | 3.2e-17 | 5.9e-16 | 3.3e-16 | 3.4e-17 | 3.1e-16 | 6.6e-16 | 5.3e-16 | 1e-15 | 4.2e-16 | 3.8e-16 | 7e-18 | 4.9e-16 | 6.1e-16 | 2.4e-17 | 6.7e-18 | 4.2e-16 |
| max | 1.1e-12 | 7.4e-13 | 5.8e-13 | 7.3e-13 | 7.9e-13 | 9e-13 | 8.7e-13 | 5.1e-13 | 4.4e-13 | 7.2e-13 | 8.8e-13 | 9.7e-13 | 9.5e-13 | 6.9e-13 | 2.1e-13 | 5.3e-13 | 9e-13 | 5.1e-13 | 1.5e-13 | 7.7e-13 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/tests/test_tardis_full/test_transport_simple Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/tests/test_tardis_full/test_transport_simple
Significant difference detected in TestTransportSimple.h5, key=/simulation/transport/transport_state/virt_packet_last_interaction_in_nu Maximum relative difference: 2.75e-14 (Versions differ by 2.75e-12%)
Displaying heatmap for key /simulation/transport/transport_state/virt_packet_last_interaction_in_nu in file TestTransportSimple.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 31 |
| max | 62 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 1.4e-14 |
| max | 2.8e-14 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/tests/test_tardis_full/test_transport_simple Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/tests/test_tardis_full/test_transport_simple
Significant difference detected in TestTransportSimple.h5, key=/simulation/plasma/j_blues Maximum relative difference: 1.69e-13 (Versions differ by 1.69e-11%)
Displaying heatmap for key /simulation/plasma/j_blues in file TestTransportSimple.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 4.2e-20 | 1.4e-20 | 3.5e-20 | 4.5e-20 | 2.5e-20 | 9e-21 | 4.6e-21 | 2.8e-20 | 2.3e-20 | 1.3e-20 | 9.1e-21 | 9.2e-21 | 1.3e-20 | 5.4e-21 | 2.2e-21 | 6.7e-21 | 5.1e-21 | 4.2e-21 | 6.3e-21 | 6.4e-21 |
| max | 1.9e-19 | 1.2e-19 | 1.5e-19 | 1.6e-19 | 8.1e-20 | 5.4e-20 | 4.1e-20 | 8.8e-20 | 8.1e-20 | 5.4e-20 | 4.1e-20 | 5.4e-20 | 5.1e-20 | 2.7e-20 | 1e-20 | 3.7e-20 | 2.9e-20 | 1.5e-20 | 2e-20 | 3.2e-20 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 1.9e-15 | 2.5e-15 | 3.1e-15 | 4.5e-15 | 1.3e-15 | 2.5e-15 | 1.3e-15 | 2e-15 | 2.4e-15 | 4.1e-15 | 2.8e-15 | 6.1e-15 | 3.3e-15 | 2.6e-15 | 2.9e-16 | 3.8e-15 | 4.9e-15 | 6.7e-16 | 1.1e-15 | 4e-15 |
| max | 5.7e-14 | 8.5e-14 | 8.6e-14 | 1.1e-13 | 4.8e-15 | 8.4e-14 | 5.6e-14 | 5.2e-15 | 5.5e-14 | 1.1e-13 | 8.4e-14 | 1.7e-13 | 8.6e-14 | 8.4e-14 | 1.5e-15 | 1.1e-13 | 1.4e-13 | 9.6e-15 | 5.5e-15 | 1.1e-13 |
Significant difference detected in TestTransportSimple.h5, key=/simulation/transport/transport_state/packet_luminosity Maximum relative difference: 1.87e-14 (Versions differ by 1.87e-12%)
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/tests/test_tardis_full/test_transport_simple Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/tests/test_tardis_full/test_transport_simple Error comparing item: /simulation/plasma/dilute_planckian_radiation_field No module named 'tardis.plasma.radiation_field' Displaying heatmap for key /simulation/transport/transport_state/packet_luminosity in file TestTransportSimple.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 2.6e+23 |
| max | 5.3e+23 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 9.4e-15 |
| max | 1.9e-14 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/tests/test_tardis_full/test_transport_simple Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/tests/test_tardis_full/test_transport_simple
Significant difference detected in TestTransportSimple.h5, key=/simulation/transport/transport_state/output_nu Maximum relative difference: 1.85e-14 (Versions differ by 1.85e-12%)
Displaying heatmap for key /simulation/transport/transport_state/output_nu in file TestTransportSimple.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 10 |
| max | 20 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 9.2e-15 |
| max | 1.8e-14 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/tests/test_tardis_full/test_transport_simple Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/tests/test_tardis_full/test_transport_simple
Displaying heatmap for key /simulation/iterations_electron_densities in file TestTransportSimple.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 9.5e-08 | 2.9e-07 | 0 | 9.5e-08 | 2.4e-08 | 7.2e-08 | 4.8e-08 | 0 | 3.6e-08 | 2.4e-08 | 0 | 1.8e-08 | 2.4e-08 | 2.4e-08 | 3e-09 | 6e-09 | 6e-09 | 8.9e-09 | 3e-09 | 0 |
| max | 4.8e-07 | 9.5e-07 | 0 | 4.8e-07 | 1.2e-07 | 2.4e-07 | 1.2e-07 | 0 | 6e-08 | 6e-08 | 0 | 6e-08 | 6e-08 | 3e-08 | 1.5e-08 | 1.5e-08 | 1.5e-08 | 3e-08 | 1.5e-08 | 0 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 3.3e-17 | 1.3e-16 | 0 | 7.2e-17 | 2.3e-17 | 8.7e-17 | 7.3e-17 | 0 | 8.5e-17 | 7e-17 | 0 | 7.9e-17 | 1.3e-16 | 1.5e-16 | 2.3e-17 | 5.5e-17 | 6.5e-17 | 1.2e-16 | 4.6e-17 | 0 |
| max | 1.7e-16 | 4.3e-16 | 0 | 3.6e-16 | 1.1e-16 | 2.9e-16 | 1.8e-16 | 0 | 1.4e-16 | 1.8e-16 | 0 | 2.6e-16 | 3.2e-16 | 1.9e-16 | 1.2e-16 | 1.4e-16 | 1.6e-16 | 3.9e-16 | 2.3e-16 | 0 |
Significant difference detected in TestTransportSimple.h5, key=/simulation/spectrum_solver/montecarlo_virtual_luminosity Maximum relative difference: 2.10e-13 (Versions differ by 2.10e-11%)
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/tests/test_tardis_full/test_transport_simple Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/tests/test_tardis_full/test_transport_simple Displaying heatmap for key /simulation/spectrum_solver/montecarlo_virtual_luminosity in file TestTransportSimple.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 3.7e+24 |
| max | 7.3e+24 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 1.1e-13 |
| max | 2.1e-13 |
Significant difference detected in TestTransportSimple.h5, key=/simulation/spectrum_solver/spectrum_virtual_packets/luminosity Maximum relative difference: 2.10e-13 (Versions differ by 2.10e-11%)
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/tests/test_tardis_full/test_transport_simple Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/tests/test_tardis_full/test_transport_simple Displaying heatmap for key /simulation/spectrum_solver/spectrum_virtual_packets/luminosity in file TestTransportSimple.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 3.7e+24 |
| max | 7.3e+24 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 1.1e-13 |
| max | 2.1e-13 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/tests/test_tardis_full/test_transport_simple Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/tests/test_tardis_full/test_transport_simple
Significant difference detected in TestTransportSimple.h5, key=/simulation/transport/transport_state/virt_packet_nus Maximum relative difference: 6.00e-14 (Versions differ by 6.00e-12%)
Displaying heatmap for key /simulation/transport/transport_state/virt_packet_nus in file TestTransportSimple.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 50 |
| max | 1e+02 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 3e-14 |
| max | 6e-14 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/tests/test_tardis_full/test_transport_simple Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/tests/test_tardis_full/test_transport_simple Displaying heatmap for key /simulation/plasma/partition_function in file TestTransportSimple.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 2.1e-16 | 3e-16 | 2.3e-16 | 4.4e-16 | 0 | 2.6e-16 | 1.5e-16 | 0 | 1.6e-16 | 4.4e-16 | 3.2e-16 | 7.3e-16 | 2.8e-16 | 2.7e-16 | 0 | 3.6e-16 | 4.5e-16 | 0 | 0 | 3e-16 |
| max | 3.6e-15 | 8e-15 | 8e-15 | 1.2e-14 | 0 | 8e-15 | 3.6e-15 | 0 | 4.4e-15 | 1.1e-14 | 7.1e-15 | 1.7e-14 | 6.2e-15 | 7.1e-15 | 0 | 9.8e-15 | 1.2e-14 | 0 | 0 | 8e-15 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 3.6e-17 | 5.3e-17 | 5e-17 | 7.9e-17 | 0 | 5.1e-17 | 2.9e-17 | 0 | 2.6e-17 | 8.1e-17 | 6.1e-17 | 1.4e-16 | 5.1e-17 | 5.3e-17 | 0 | 7.1e-17 | 9.2e-17 | 0 | 0 | 6.3e-17 |
| max | 7.5e-16 | 1.3e-15 | 1.4e-15 | 1.9e-15 | 0 | 1.4e-15 | 7.2e-16 | 0 | 7.4e-16 | 1.9e-15 | 1.3e-15 | 3.1e-15 | 1.2e-15 | 1.3e-15 | 0 | 1.8e-15 | 2.2e-15 | 0 | 0 | 1.6e-15 |
Significant difference detected in TestTransportSimple.h5, key=/simulation/spectrum_solver/spectrum_virtual_packets/luminosity_density_lambda Maximum relative difference: 2.10e-13 (Versions differ by 2.10e-11%)
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/tests/test_tardis_full/test_transport_simple Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/tests/test_tardis_full/test_transport_simple Displaying heatmap for key /simulation/spectrum_solver/spectrum_virtual_packets/luminosity_density_lambda in file TestTransportSimple.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 1.9e+32 |
| max | 3.7e+32 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 1.1e-13 |
| max | 2.1e-13 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/tests/test_tardis_full/test_transport_simple Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/tests/test_tardis_full/test_transport_simple
Significant difference detected in TestTransportSimple.h5, key=/simulation/plasma/ion_number_density Maximum relative difference: 1.01e-13 (Versions differ by 1.01e-11%)
Displaying heatmap for key /simulation/plasma/ion_number_density in file TestTransportSimple.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 2.2e-09 | 4.8e-09 | 3e-09 | 3.4e-09 | 0 | 1.5e-09 | 8.7e-10 | 0 | 7.4e-10 | 8.1e-10 | 3.7e-10 | 8.5e-10 | 3.2e-10 | 2.4e-10 | 0 | 3.1e-10 | 3e-10 | 0 | 0 | 9.4e-11 |
| max | 7.5e-08 | 1.2e-07 | 7.5e-08 | 8.7e-08 | 0 | 3e-08 | 3e-08 | 0 | 3e-08 | 1.9e-08 | 9.8e-09 | 1.7e-08 | 7.5e-09 | 7.5e-09 | 0 | 7.5e-09 | 7.5e-09 | 0 | 0 | 2.2e-09 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 6.7e-15 | 1.3e-14 | 1.4e-14 | 2e-14 | 0 | 1.3e-14 | 6.8e-15 | 0 | 7.6e-15 | 2.1e-14 | 1.3e-14 | 3.3e-14 | 1.3e-14 | 1.3e-14 | 0 | 2e-14 | 2.6e-14 | 0 | 0 | 1.9e-14 |
| max | 2.7e-14 | 4.8e-14 | 4.3e-14 | 6.5e-14 | 0 | 4.5e-14 | 2.3e-14 | 0 | 2.4e-14 | 6.2e-14 | 3.7e-14 | 1e-13 | 4.6e-14 | 3.7e-14 | 0 | 6.1e-14 | 7.8e-14 | 0 | 0 | 6.9e-14 |
Significant difference detected in TestTransportSimple.h5, key=/simulation/spectrum_solver/spectrum_real_packets_reabsorbed/luminosity Maximum relative difference: 4.34e-13 (Versions differ by 4.34e-11%)
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/tests/test_tardis_full/test_transport_simple Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/tests/test_tardis_full/test_transport_simple Displaying heatmap for key /simulation/spectrum_solver/spectrum_real_packets_reabsorbed/luminosity in file TestTransportSimple.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 1.6e+26 |
| max | 3.1e+26 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 2.2e-13 |
| max | 4.3e-13 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/tests/test_tardis_full/test_transport_simple Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/tests/test_tardis_full/test_transport_simple Displaying heatmap for key /simulation/transport/transport_state/j_estimator in file TestTransportSimple.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 0.11 |
| max | 0.16 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 1.7e-15 |
| max | 2.3e-15 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/tests/test_tardis_full/test_transport_simple Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/tests/test_tardis_full/test_transport_simple Displaying heatmap for key /simulation/plasma/t_electrons in file TestTransportSimple.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 5.1e-12 |
| max | 7.3e-12 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 5.3e-16 |
| max | 7.5e-16 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/tests/test_tardis_full/test_transport_simple Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/tests/test_tardis_full/test_transport_simple Displaying heatmap for key /simulation/transport/transport_state/nu_bar_estimator in file TestTransportSimple.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 9.4e+13 |
| max | 1.4e+14 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 1.7e-15 |
| max | 2.6e-15 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/tests/test_tardis_full/test_transport_simple Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/tests/test_tardis_full/test_transport_simple ================================================== Summary for TestTransportSimple.h5: Total number of keys- in ref1: 93, in ref2: 93 Number of keys with different names in ref1 and ref2: 0 Number of keys with same name but different data in ref1 and ref2: 43 Number of totally same keys: 49 ==================================================
Displaying heatmap for key /data in file test_plasma_estimates__dilution_factor__.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 6.4e-16 |
| max | 1.1e-15 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 2.1e-15 |
| max | 3e-15 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/simulation/tests/test_simulation Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/simulation/tests/test_simulation ================================================== Summary for test_plasma_estimates__dilution_factor__.h5: Total number of keys- in ref1: 1, in ref2: 1 Number of keys with different names in ref1 and ref2: 0 Number of keys with same name but different data in ref1 and ref2: 1 Number of totally same keys: 0 ==================================================
Displaying heatmap for key /data in file test_plasma_estimates__nu_bar_estimator__.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 9.6e+13 |
| max | 1.4e+14 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 1.6e-15 |
| max | 2.2e-15 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/simulation/tests/test_simulation Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/simulation/tests/test_simulation ================================================== Summary for test_plasma_estimates__nu_bar_estimator__.h5: Total number of keys- in ref1: 1, in ref2: 1 Number of keys with different names in ref1 and ref2: 0 Number of keys with same name but different data in ref1 and ref2: 1 Number of totally same keys: 0 ================================================== Displaying heatmap for key /data in file test_plasma_estimates__output_energies__.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 3.2e-20 |
| max | 6.4e-20 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 1.3e-15 |
| max | 2.6e-15 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/simulation/tests/test_simulation Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/simulation/tests/test_simulation ================================================== Summary for test_plasma_estimates__output_energies__.h5: Total number of keys- in ref1: 1, in ref2: 1 Number of keys with different names in ref1 and ref2: 0 Number of keys with same name but different data in ref1 and ref2: 1 Number of totally same keys: 0 ==================================================
Displaying heatmap for key /data in file test_plasma_state_iterations__iterations_w__.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 5.3e-16 | 2.8e-16 | 3.3e-16 | 1.4e-16 | 1.1e-16 | 1.2e-16 | 1.2e-16 | 5.6e-17 | 4.2e-17 | 1.4e-16 | 2.8e-17 | 2.1e-17 | 1.4e-17 | 1.4e-17 | 7.6e-17 | 3.5e-17 | 4.9e-17 | 5.6e-17 | 4.9e-17 | 1.2e-16 |
| max | 1.1e-15 | 5.6e-16 | 6.7e-16 | 2.8e-16 | 2.2e-16 | 2.5e-16 | 2.5e-16 | 1.1e-16 | 8.3e-17 | 2.8e-16 | 5.6e-17 | 4.2e-17 | 2.8e-17 | 2.8e-17 | 1.5e-16 | 6.9e-17 | 9.7e-17 | 1.1e-16 | 9.7e-17 | 2.4e-16 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 1.2e-15 | 7.7e-16 | 1.1e-15 | 5.4e-16 | 4.9e-16 | 6.2e-16 | 6.8e-16 | 3.3e-16 | 2.8e-16 | 9.9e-16 | 2.2e-16 | 1.7e-16 | 1.2e-16 | 1.3e-16 | 7.6e-16 | 3.7e-16 | 5.4e-16 | 6.5e-16 | 5.9e-16 | 1.5e-15 |
| max | 2.3e-15 | 1.5e-15 | 2.2e-15 | 1.1e-15 | 9.9e-16 | 1.2e-15 | 1.4e-15 | 6.7e-16 | 5.5e-16 | 2e-15 | 4.3e-16 | 3.4e-16 | 2.4e-16 | 2.6e-16 | 1.5e-15 | 7.3e-16 | 1.1e-15 | 1.3e-15 | 1.2e-15 | 3e-15 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/simulation/tests/test_simulation Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/simulation/tests/test_simulation ================================================== Summary for test_plasma_state_iterations__iterations_w__.h5: Total number of keys- in ref1: 1, in ref2: 1 Number of keys with different names in ref1 and ref2: 0 Number of keys with same name but different data in ref1 and ref2: 1 Number of totally same keys: 0 ================================================== Displaying heatmap for key /data in file test_plasma_state_iterations__iterations_t_rad__.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 1.8e-12 | 9.1e-13 | 1.8e-12 | 9.1e-13 | 1.8e-12 | 9.1e-13 | 9.1e-13 | 0 | 0 | 2.7e-12 | 0 | 1.8e-12 | 1.8e-12 | 0 | 1.8e-12 | 1.8e-12 | 1.8e-12 | 9.1e-13 | 0 | 3.6e-12 |
| max | 3.6e-12 | 1.8e-12 | 3.6e-12 | 1.8e-12 | 3.6e-12 | 1.8e-12 | 1.8e-12 | 0 | 0 | 5.5e-12 | 0 | 3.6e-12 | 3.6e-12 | 0 | 3.6e-12 | 3.6e-12 | 3.6e-12 | 1.8e-12 | 0 | 7.3e-12 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 1.8e-16 | 9e-17 | 1.8e-16 | 9e-17 | 1.8e-16 | 9e-17 | 9e-17 | 0 | 0 | 2.7e-16 | 0 | 1.8e-16 | 1.8e-16 | 0 | 1.8e-16 | 1.8e-16 | 1.9e-16 | 9.3e-17 | 0 | 3.8e-16 |
| max | 3.6e-16 | 1.8e-16 | 3.6e-16 | 1.8e-16 | 3.6e-16 | 1.8e-16 | 1.8e-16 | 0 | 0 | 5.4e-16 | 0 | 3.6e-16 | 3.7e-16 | 0 | 3.7e-16 | 3.7e-16 | 3.7e-16 | 1.9e-16 | 0 | 7.5e-16 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/simulation/tests/test_simulation Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/simulation/tests/test_simulation ================================================== Summary for test_plasma_state_iterations__iterations_t_rad__.h5: Total number of keys- in ref1: 1, in ref2: 1 Number of keys with different names in ref1 and ref2: 0 Number of keys with same name but different data in ref1 and ref2: 1 Number of totally same keys: 0 ==================================================
Displaying heatmap for key /data in file test_plasma_estimates__output_nus__.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 1.3 |
| max | 2.5 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 1.3e-15 |
| max | 2.6e-15 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/simulation/tests/test_simulation Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/simulation/tests/test_simulation ================================================== Summary for test_plasma_estimates__output_nus__.h5: Total number of keys- in ref1: 1, in ref2: 1 Number of keys with different names in ref1 and ref2: 0 Number of keys with same name but different data in ref1 and ref2: 1 Number of totally same keys: 0 ==================================================
Displaying heatmap for key /data in file test_plasma_estimates__j_estimator__.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 0.099 |
| max | 0.14 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 1.5e-15 |
| max | 1.9e-15 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/simulation/tests/test_simulation Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/simulation/tests/test_simulation ================================================== Summary for test_plasma_estimates__j_estimator__.h5: Total number of keys- in ref1: 1, in ref2: 1 Number of keys with different names in ref1 and ref2: 0 Number of keys with same name but different data in ref1 and ref2: 1 Number of totally same keys: 0 ================================================== Displaying heatmap for key /data in file test_plasma_state_iterations__iterations_electron_densities__.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 4.8e-07 | 4.8e-07 | 1.2e-07 | 0 | 0 | 0 | 0 | 0 | 0 | 3e-08 | 0 | 0 | 0 | 0 | 7.5e-09 | 7.5e-09 | 1.5e-08 | 7.5e-09 | 0 | 3.7e-09 |
| max | 9.5e-07 | 9.5e-07 | 2.4e-07 | 0 | 0 | 0 | 0 | 0 | 0 | 6e-08 | 0 | 0 | 0 | 0 | 1.5e-08 | 1.5e-08 | 3e-08 | 1.5e-08 | 0 | 7.5e-09 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 1.7e-16 | 2.2e-16 | 7.1e-17 | 0 | 0 | 0 | 0 | 0 | 0 | 8.8e-17 | 0 | 0 | 0 | 0 | 5.8e-17 | 6.9e-17 | 1.6e-16 | 9.7e-17 | 0 | 6.7e-17 |
| max | 3.3e-16 | 4.3e-16 | 1.4e-16 | 0 | 0 | 0 | 0 | 0 | 0 | 1.8e-16 | 0 | 0 | 0 | 0 | 1.2e-16 | 1.4e-16 | 3.3e-16 | 1.9e-16 | 0 | 1.3e-16 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/simulation/tests/test_simulation Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/simulation/tests/test_simulation ================================================== Summary for test_plasma_state_iterations__iterations_electron_densities__.h5: Total number of keys- in ref1: 1, in ref2: 1 Number of keys with different names in ref1 and ref2: 0 Number of keys with same name but different data in ref1 and ref2: 1 Number of totally same keys: 0 ==================================================
Displaying heatmap for key /data in file test_plasma_estimates__t_radiative__.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 4.9e-12 |
| max | 7.3e-12 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 5e-16 |
| max | 7.5e-16 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/simulation/tests/test_simulation Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/simulation/tests/test_simulation ================================================== Summary for test_plasma_estimates__t_radiative__.h5: Total number of keys- in ref1: 1, in ref2: 1 Number of keys with different names in ref1 and ref2: 0 Number of keys with same name but different data in ref1 and ref2: 1 Number of totally same keys: 0 ==================================================
Significant difference detected in test_calculate_sobolev_line_opacity.h5, key=/data Maximum relative difference: 1.14e-14 (Versions differ by 1.14e-12%)
Displaying heatmap for key /data in file test_calculate_sobolev_line_opacity.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 9.9e-26 | 6.5e-25 | 1.4e-25 | 6.5e-24 | 1.1e-28 | 1e-23 | 2.4e-25 | 1.1e-25 | 3.4e-22 | 1.1e-25 | 4.4e-25 | 5.1e-26 | 1.3e-26 | 1.6e-28 | 1.2e-27 | 8.2e-25 | 2.2e-30 | 2.5e-38 | 2.6e-24 | 4.3e-26 |
| max | 1.3e-21 | 1e-20 | 8.5e-22 | 8.1e-20 | 1.7e-24 | 1.6e-19 | 2.5e-21 | 8.5e-22 | 3.5e-18 | 8.5e-22 | 6.8e-21 | 3.2e-22 | 1.3e-22 | 3.7e-24 | 1.3e-23 | 1e-20 | 2.3e-26 | 6.7e-34 | 2.7e-20 | 4.2e-22 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 2.1e-19 | 8.5e-19 | 3.6e-19 | 2.5e-18 | 5.1e-20 | 8.8e-19 | 3.3e-19 | 4.3e-19 | 1e-18 | 2.2e-18 | 8.5e-19 | 4.5e-18 | 1.1e-18 | 3.1e-18 | 4e-19 | 1.5e-19 | 1.2e-18 | 4.1e-19 | 1e-18 | 2.3e-19 |
| max | 7e-16 | 2.7e-15 | 1.2e-15 | 6.9e-15 | 3.8e-16 | 9.3e-16 | 6.5e-16 | 8.3e-16 | 1.8e-15 | 1.1e-14 | 2.3e-15 | 6e-15 | 1.9e-15 | 5.9e-15 | 8.3e-16 | 4e-16 | 4.4e-15 | 4e-15 | 2.4e-15 | 6.8e-16 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/opacities/tests/test_tau_sobolev Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/opacities/tests/test_tau_sobolev ================================================== Summary for test_calculate_sobolev_line_opacity.h5: Total number of keys- in ref1: 1, in ref2: 1 Number of keys with different names in ref1 and ref2: 0 Number of keys with same name but different data in ref1 and ref2: 1 Number of totally same keys: 0 ==================================================
Significant difference detected in TestSpectrumSolver.h5, key=/simulation/transport/transport_state/virt_packet_last_interaction_in_r Maximum relative difference: 2.00e-13 (Versions differ by 2.00e-11%)
Displaying heatmap for key /simulation/transport/transport_state/virt_packet_last_interaction_in_r in file TestSpectrumSolver.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 1.7e+02 |
| max | 3.4e+02 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 1e-13 |
| max | 2e-13 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/spectrum/tests/test_spectrum_solver/test_spectrum_solver Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/spectrum/tests/test_spectrum_solver/test_spectrum_solver Displaying heatmap for key /simulation/transport/transport_state/j_blue_estimator in file TestSpectrumSolver.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 4.1e-36 | 1e-35 | 9.6e-36 | 1.1e-35 | 1.2e-35 | 1.1e-35 | 1.1e-35 | 1e-35 | 1.1e-35 | 1.1e-35 | 1e-35 | 1e-35 | 1e-35 | 1e-35 | 1.1e-35 | 1.1e-35 | 1.1e-35 | 1e-35 | 1e-35 | 9.9e-36 |
| max | 1.5e-33 | 1.2e-33 | 1.2e-33 | 1.2e-33 | 7.7e-34 | 7.7e-34 | 7.7e-34 | 7.7e-34 | 7.7e-34 | 7.7e-34 | 7.7e-34 | 7.7e-34 | 5.8e-34 | 7.7e-34 | 5.8e-34 | 5.8e-34 | 5.8e-34 | 5.8e-34 | 3.9e-34 | 3.9e-34 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 2.8e-18 | 9.3e-18 | 1e-17 | 1.2e-17 | 1.4e-17 | 1.6e-17 | 1.7e-17 | 1.6e-17 | 1.7e-17 | 1.9e-17 | 1.8e-17 | 1.9e-17 | 1.9e-17 | 2e-17 | 2e-17 | 2.3e-17 | 2.3e-17 | 2.2e-17 | 2.2e-17 | 2.3e-17 |
| max | 4.2e-16 | 4.4e-16 | 5e-16 | 4.3e-16 | 4.5e-16 | 4.9e-16 | 6.2e-16 | 4.4e-16 | 6.2e-16 | 6.4e-16 | 6.8e-16 | 6.5e-16 | 5.2e-16 | 5.4e-16 | 8.2e-16 | 1.8e-15 | 9.9e-16 | 7.1e-16 | 5.2e-16 | 6.2e-16 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/spectrum/tests/test_spectrum_solver/test_spectrum_solver Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/spectrum/tests/test_spectrum_solver/test_spectrum_solver
Displaying heatmap for key /simulation/plasma/level_number_density in file TestSpectrumSolver.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 9.6e-26 | 5e-25 | 3.2e-24 | 1.4e-23 | 3.8e-28 | 6.1e-24 | 9.5e-26 | 1.1e-25 | 3.5e-21 | 1.8e-25 | 1.6e-24 | 4.8e-26 | 1.9e-26 | 1.9e-28 | 9.7e-26 | 1.9e-25 | 7.8e-22 | 7.3e-31 | 8.6e-25 | 6.4e-27 |
| max | 4.2e-22 | 1.7e-21 | 1.4e-20 | 2.7e-20 | 1.7e-24 | 2.7e-20 | 4.2e-22 | 4.2e-22 | 1.4e-17 | 4.2e-22 | 6.8e-21 | 1.1e-22 | 5.3e-23 | 8.3e-25 | 4.2e-22 | 8.5e-22 | 3.5e-18 | 3.2e-27 | 3.4e-21 | 2.6e-23 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 1.8e-19 | 4.4e-19 | 2.5e-19 | 6.6e-19 | 1.9e-19 | 2.5e-19 | 1.6e-19 | 3e-19 | 3.4e-19 | 3.7e-19 | 4.2e-19 | 4e-19 | 2.9e-19 | 2.4e-19 | 4e-19 | 1.7e-19 | 4.6e-19 | 1.9e-19 | 3.8e-19 | 1.4e-19 |
| max | 2.2e-16 | 4e-16 | 2.2e-16 | 4.2e-16 | 2.3e-16 | 3e-16 | 2.4e-16 | 3.1e-16 | 2.1e-16 | 2.4e-16 | 3.4e-16 | 3.9e-16 | 2.3e-16 | 3.1e-16 | 3e-16 | 3e-16 | 2.9e-16 | 2.5e-16 | 3e-16 | 1.5e-16 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/spectrum/tests/test_spectrum_solver/test_spectrum_solver Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/spectrum/tests/test_spectrum_solver/test_spectrum_solver
Displaying heatmap for key /simulation/plasma/level_boltzmann_factor in file TestSpectrumSolver.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 2.4e-23 | 4.9e-23 | 6.1e-23 | 1.6e-21 | 4.3e-23 | 2e-22 | 3.7e-23 | 8.6e-23 | 2.5e-20 | 6.9e-23 | 1.6e-21 | 7.9e-22 | 2.8e-23 | 4.3e-22 | 3.7e-23 | 2.5e-23 | 1.3e-22 | 1.2e-23 | 4.6e-24 | 8e-24 |
| max | 1.1e-19 | 2.2e-19 | 2.2e-19 | 6.9e-18 | 1.1e-19 | 8.7e-19 | 1.1e-19 | 2.2e-19 | 1.1e-16 | 1.1e-19 | 6.9e-18 | 1.7e-18 | 1.1e-19 | 1.7e-18 | 5.4e-20 | 1.1e-19 | 2.2e-19 | 5.4e-20 | 1.4e-20 | 1.4e-20 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 1.8e-19 | 4.3e-19 | 3.2e-19 | 5.2e-19 | 1.6e-19 | 2e-19 | 1.6e-19 | 2.2e-19 | 4.1e-19 | 4.7e-19 | 6.2e-19 | 3.3e-19 | 2.5e-19 | 3.3e-19 | 3.5e-19 | 1.9e-19 | 3.3e-19 | 2.2e-19 | 3.2e-19 | 2.6e-19 |
| max | 2.2e-16 | 2.8e-16 | 2.2e-16 | 3.5e-16 | 1.6e-16 | 1.8e-16 | 1.9e-16 | 2.3e-16 | 2.8e-16 | 2.4e-16 | 2.5e-16 | 2.9e-16 | 2.5e-16 | 3.1e-16 | 2.3e-16 | 2.1e-16 | 2.1e-16 | 2.6e-16 | 2.2e-16 | 2.4e-16 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/spectrum/tests/test_spectrum_solver/test_spectrum_solver Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/spectrum/tests/test_spectrum_solver/test_spectrum_solver
Significant difference detected in TestSpectrumSolver.h5, key=/simulation/spectrum_solver/spectrum_real_packets_reabsorbed/luminosity_density_lambda Maximum relative difference: 1.13e-13 (Versions differ by 1.13e-11%)
Displaying heatmap for key /simulation/spectrum_solver/spectrum_real_packets_reabsorbed/luminosity_density_lambda in file TestSpectrumSolver.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 5.9e+32 |
| max | 1.2e+33 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 5.8e-14 |
| max | 1.1e-13 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/spectrum/tests/test_spectrum_solver/test_spectrum_solver Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/spectrum/tests/test_spectrum_solver/test_spectrum_solver
Significant difference detected in TestSpectrumSolver.h5, key=/simulation/transport/transport_state/last_interaction_in_r Maximum relative difference: 1.96e-13 (Versions differ by 1.96e-11%)
Displaying heatmap for key /simulation/transport/transport_state/last_interaction_in_r in file TestSpectrumSolver.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 1.7e+02 |
| max | 3.4e+02 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 9.8e-14 |
| max | 2e-13 |
Significant difference detected in TestSpectrumSolver.h5, key=/simulation/spectrum_solver/spectrum_integrated/luminosity_density_lambda Maximum relative difference: 9.38e-12 (Versions differ by 9.38e-10%)
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/spectrum/tests/test_spectrum_solver/test_spectrum_solver Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/spectrum/tests/test_spectrum_solver/test_spectrum_solver Displaying heatmap for key /simulation/spectrum_solver/spectrum_integrated/luminosity_density_lambda in file TestSpectrumSolver.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 6.2e+31 |
| max | 1.2e+32 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 4.8e-12 |
| max | 9.4e-12 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/spectrum/tests/test_spectrum_solver/test_spectrum_solver Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/spectrum/tests/test_spectrum_solver/test_spectrum_solver Displaying heatmap for key /simulation/plasma/phi in file TestSpectrumSolver.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 0 | 6.1e-81 | 0 | 0 | 5.1e-105 | 0 | 0 | 0 | 1.4e-242 | 0 | 0 | 0 | 2.7e-37 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 0 | 5.4e-79 | 0 | 0 | 4.5e-103 | 0 | 0 | 0 | 1.2e-240 | 0 | 0 | 0 | 2.4e-35 | 0 | 0 | 0 | 0 | 0 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 0 | 0 | 0 | 1.8e-18 | 0 | 0 | 1.8e-18 | 0 | 0 | 0 | 5.3e-18 | 0 | 0 | 0 | 2.6e-18 | 0 | 0 | 0 | 0 | 0 |
| max | 0 | 0 | 0 | 1.1e-16 | 0 | 0 | 1.2e-16 | 0 | 0 | 0 | 3.4e-16 | 0 | 0 | 0 | 1.6e-16 | 0 | 0 | 0 | 0 | 0 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/spectrum/tests/test_spectrum_solver/test_spectrum_solver Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/spectrum/tests/test_spectrum_solver/test_spectrum_solver
Significant difference detected in TestSpectrumSolver.h5, key=/simulation/transport/transport_state/virt_packet_energies Maximum relative difference: 5.25e-13 (Versions differ by 5.25e-11%)
Displaying heatmap for key /simulation/transport/transport_state/virt_packet_energies in file TestSpectrumSolver.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 4e-20 |
| max | 8e-20 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 2.6e-13 |
| max | 5.3e-13 |
Significant difference detected in TestSpectrumSolver.h5, key=/simulation/spectrum_solver/spectrum_integrated/luminosity Maximum relative difference: 9.38e-12 (Versions differ by 9.38e-10%)
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/spectrum/tests/test_spectrum_solver/test_spectrum_solver Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/spectrum/tests/test_spectrum_solver/test_spectrum_solver Displaying heatmap for key /simulation/spectrum_solver/spectrum_integrated/luminosity in file TestSpectrumSolver.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 1.8e+24 |
| max | 3.6e+24 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 4.8e-12 |
| max | 9.4e-12 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/spectrum/tests/test_spectrum_solver/test_spectrum_solver Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/spectrum/tests/test_spectrum_solver/test_spectrum_solver
Significant difference detected in TestSpectrumSolver.h5, key=/simulation/plasma/tau_sobolevs Maximum relative difference: 1.14e-14 (Versions differ by 1.14e-12%)
Displaying heatmap for key /simulation/plasma/tau_sobolevs in file TestSpectrumSolver.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 9.9e-26 | 6.5e-25 | 1.4e-25 | 6.5e-24 | 1.1e-28 | 1e-23 | 2.4e-25 | 1.1e-25 | 3.4e-22 | 1.1e-25 | 4.4e-25 | 5.1e-26 | 1.3e-26 | 1.6e-28 | 1.2e-27 | 8.2e-25 | 2.2e-30 | 2.5e-38 | 2.6e-24 | 4.3e-26 |
| max | 1.3e-21 | 1e-20 | 8.5e-22 | 8.1e-20 | 1.7e-24 | 1.6e-19 | 2.5e-21 | 8.5e-22 | 3.5e-18 | 8.5e-22 | 6.8e-21 | 3.2e-22 | 1.3e-22 | 3.7e-24 | 1.3e-23 | 1e-20 | 2.3e-26 | 6.7e-34 | 2.7e-20 | 4.2e-22 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 2.1e-19 | 8.5e-19 | 3.6e-19 | 2.5e-18 | 5.1e-20 | 8.8e-19 | 3.3e-19 | 4.3e-19 | 1e-18 | 2.2e-18 | 8.5e-19 | 4.5e-18 | 1.1e-18 | 3.1e-18 | 4e-19 | 1.5e-19 | 1.2e-18 | 4.1e-19 | 1e-18 | 2.3e-19 |
| max | 7e-16 | 2.7e-15 | 1.2e-15 | 6.9e-15 | 3.8e-16 | 9.3e-16 | 6.5e-16 | 8.3e-16 | 1.8e-15 | 1.1e-14 | 2.3e-15 | 6e-15 | 1.9e-15 | 5.9e-15 | 8.3e-16 | 4e-16 | 4.4e-15 | 4e-15 | 2.4e-15 | 6.8e-16 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/spectrum/tests/test_spectrum_solver/test_spectrum_solver Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/spectrum/tests/test_spectrum_solver/test_spectrum_solver
Significant difference detected in TestSpectrumSolver.h5, key=/simulation/transport/transport_state/output_energy Maximum relative difference: 1.35e-14 (Versions differ by 1.35e-12%)
Displaying heatmap for key /simulation/transport/transport_state/output_energy in file TestSpectrumSolver.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 1.3e-20 |
| max | 2.5e-20 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 6.7e-15 |
| max | 1.3e-14 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/spectrum/tests/test_spectrum_solver/test_spectrum_solver Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/spectrum/tests/test_spectrum_solver/test_spectrum_solver
Displaying heatmap for key /simulation/transport/transport_state/last_interaction_in_nu in file TestSpectrumSolver.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 3.8 |
| max | 7.6 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 4.7e-15 |
| max | 9.4e-15 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/spectrum/tests/test_spectrum_solver/test_spectrum_solver Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/spectrum/tests/test_spectrum_solver/test_spectrum_solver
Displaying heatmap for key /simulation/plasma/general_level_boltzmann_factor in file TestSpectrumSolver.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 2.4e-23 | 4.9e-23 | 6.1e-23 | 1.6e-21 | 4.3e-23 | 2e-22 | 3.7e-23 | 8.6e-23 | 2.5e-20 | 6.9e-23 | 1.6e-21 | 7.9e-22 | 2.8e-23 | 4.3e-22 | 3.7e-23 | 2.5e-23 | 1.3e-22 | 1.2e-23 | 4.6e-24 | 8e-24 |
| max | 1.1e-19 | 2.2e-19 | 2.2e-19 | 6.9e-18 | 1.1e-19 | 8.7e-19 | 1.1e-19 | 2.2e-19 | 1.1e-16 | 1.1e-19 | 6.9e-18 | 1.7e-18 | 1.1e-19 | 1.7e-18 | 5.4e-20 | 1.1e-19 | 2.2e-19 | 5.4e-20 | 1.4e-20 | 1.4e-20 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 1.8e-19 | 4.3e-19 | 3.2e-19 | 5.2e-19 | 1.6e-19 | 2e-19 | 1.6e-19 | 2.2e-19 | 4.1e-19 | 4.7e-19 | 6.2e-19 | 3.3e-19 | 2.5e-19 | 3.3e-19 | 3.5e-19 | 1.9e-19 | 3.3e-19 | 2.2e-19 | 3.2e-19 | 2.6e-19 |
| max | 2.2e-16 | 2.8e-16 | 2.2e-16 | 3.5e-16 | 1.6e-16 | 1.8e-16 | 1.9e-16 | 2.3e-16 | 2.8e-16 | 2.4e-16 | 2.5e-16 | 2.9e-16 | 2.5e-16 | 3.1e-16 | 2.3e-16 | 2.1e-16 | 2.1e-16 | 2.6e-16 | 2.2e-16 | 2.4e-16 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/spectrum/tests/test_spectrum_solver/test_spectrum_solver Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/spectrum/tests/test_spectrum_solver/test_spectrum_solver
Significant difference detected in TestSpectrumSolver.h5, key=/simulation/transport/transport_state/virt_packet_initial_mus Maximum relative difference: 6.11e-09 (Versions differ by 6.11e-07%)
Displaying heatmap for key /simulation/transport/transport_state/virt_packet_initial_mus in file TestSpectrumSolver.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 2e-13 |
| max | 4e-13 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 3.1e-09 |
| max | 6.1e-09 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/spectrum/tests/test_spectrum_solver/test_spectrum_solver Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/spectrum/tests/test_spectrum_solver/test_spectrum_solver
Significant difference detected in TestSpectrumSolver.h5, key=/simulation/plasma/transition_probabilities Maximum relative difference: 1.07e-12 (Versions differ by 1.07e-10%)
Displaying heatmap for key /simulation/plasma/transition_probabilities in file TestSpectrumSolver.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 4.5e-18 | 4.8e-18 | 2.9e-18 | 3.4e-18 | 2.2e-18 | 4.8e-19 | 3.1e-18 | 2.5e-18 | 8.5e-18 | 1e-17 | 1e-18 | 8.2e-18 | 2.8e-21 | 1.5e-18 | 2.9e-18 | 3.6e-18 | 3.9e-18 | 5.2e-19 | 2.3e-18 | 5.1e-19 |
| max | 5.1e-14 | 1e-13 | 3.5e-14 | 5.2e-14 | 5e-14 | 1.6e-14 | 3.4e-14 | 8.2e-14 | 1.4e-13 | 1.5e-13 | 3.1e-14 | 2.2e-13 | 5.6e-17 | 3.2e-14 | 5.9e-14 | 5.9e-14 | 5.1e-14 | 7.5e-15 | 6.7e-14 | 1.2e-14 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 2.1e-16 | 7.7e-17 | 1.3e-16 | 1.1e-16 | 7.3e-17 | 2.6e-17 | 7.8e-17 | 2.8e-17 | 5.1e-16 | 2.4e-16 | 3.4e-17 | 3.7e-16 | 5.8e-19 | 6.3e-17 | 1.2e-16 | 7.5e-17 | 1.1e-16 | 6.1e-17 | 3.4e-17 | 3.8e-17 |
| max | 8.3e-13 | 5.2e-13 | 7e-13 | 3e-13 | 3e-13 | 4.6e-13 | 3.3e-13 | 3.3e-13 | 9.4e-13 | 8.9e-13 | 6e-13 | 1.1e-12 | 8.4e-15 | 1.6e-13 | 4.8e-13 | 9.1e-13 | 6e-13 | 1e-12 | 5.2e-13 | 1.6e-13 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/spectrum/tests/test_spectrum_solver/test_spectrum_solver Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/spectrum/tests/test_spectrum_solver/test_spectrum_solver
Significant difference detected in TestSpectrumSolver.h5, key=/simulation/plasma/stimulated_emission_factor Maximum relative difference: 1.14e-14 (Versions differ by 1.14e-12%)
Displaying heatmap for key /simulation/plasma/stimulated_emission_factor in file TestSpectrumSolver.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 7.2e-20 | 1.8e-19 | 6.5e-20 | 4.1e-19 | 3.8e-21 | 1.1e-19 | 8.7e-20 | 9.5e-20 | 2e-19 | 3.4e-19 | 1.9e-19 | 7.3e-19 | 2.1e-19 | 5.2e-19 | 1.1e-19 | 2.3e-20 | 1.9e-19 | 3.4e-20 | 2.2e-19 | 6.1e-20 |
| max | 2.2e-16 | 4.4e-16 | 2.2e-16 | 4.4e-16 | 1.1e-16 | 2.2e-16 | 2.2e-16 | 2.2e-16 | 2.2e-16 | 3.3e-16 | 3.3e-16 | 4.4e-16 | 2.2e-16 | 3.3e-16 | 2.2e-16 | 1.1e-16 | 2.2e-16 | 2.2e-16 | 3.3e-16 | 2.2e-16 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 1.6e-19 | 6.2e-19 | 1.5e-19 | 1.6e-18 | 5.2e-21 | 2.2e-19 | 1.6e-19 | 2.6e-19 | 6.9e-19 | 1.8e-18 | 6.9e-19 | 3.6e-18 | 8.1e-19 | 2.6e-18 | 2.6e-19 | 4.3e-20 | 9.3e-19 | 3.6e-19 | 7.9e-19 | 2e-19 |
| max | 5.9e-16 | 2.6e-15 | 9.8e-16 | 6.9e-15 | 1.4e-16 | 1e-15 | 4.5e-16 | 7.9e-16 | 1.5e-15 | 1.1e-14 | 2.3e-15 | 5.6e-15 | 1.4e-15 | 5.5e-15 | 4.4e-16 | 2.4e-16 | 4.5e-15 | 3.9e-15 | 2.1e-15 | 7.1e-16 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/spectrum/tests/test_spectrum_solver/test_spectrum_solver Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/spectrum/tests/test_spectrum_solver/test_spectrum_solver
Significant difference detected in TestSpectrumSolver.h5, key=/simulation/transport/transport_state/virt_packet_initial_rs Maximum relative difference: 2.00e-13 (Versions differ by 2.00e-11%)
Displaying heatmap for key /simulation/transport/transport_state/virt_packet_initial_rs in file TestSpectrumSolver.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 1.7e+02 |
| max | 3.4e+02 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 1e-13 |
| max | 2e-13 |
Significant difference detected in TestSpectrumSolver.h5, key=/simulation/plasma/beta_sobolev Maximum relative difference: 1.08e-12 (Versions differ by 1.08e-10%)
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/spectrum/tests/test_spectrum_solver/test_spectrum_solver Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/spectrum/tests/test_spectrum_solver/test_spectrum_solver Displaying heatmap for key /simulation/plasma/beta_sobolev in file TestSpectrumSolver.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 1.1e-16 | 4.6e-17 | 5.7e-17 | 3.2e-17 | 1.7e-17 | 1.9e-17 | 3.1e-17 | 1.3e-17 | 1.1e-16 | 9.6e-17 | 2.3e-17 | 5.3e-17 | 0 | 1.2e-17 | 2.6e-17 | 4.5e-17 | 4.5e-17 | 5.4e-17 | 2.3e-17 | 9.6e-18 |
| max | 8.4e-13 | 5.2e-13 | 7.1e-13 | 3e-13 | 3.1e-13 | 4.6e-13 | 3.3e-13 | 3.4e-13 | 9.4e-13 | 8.9e-13 | 6.1e-13 | 1.1e-12 | 0 | 1.6e-13 | 4.8e-13 | 9.1e-13 | 6e-13 | 1e-12 | 5.3e-13 | 1.6e-13 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 1.1e-16 | 4.6e-17 | 5.7e-17 | 3.2e-17 | 1.7e-17 | 1.9e-17 | 3.1e-17 | 1.3e-17 | 1.1e-16 | 9.6e-17 | 2.3e-17 | 5.3e-17 | 0 | 1.3e-17 | 2.6e-17 | 4.5e-17 | 4.5e-17 | 5.4e-17 | 2.3e-17 | 9.6e-18 |
| max | 8.4e-13 | 5.2e-13 | 7.1e-13 | 3e-13 | 3.1e-13 | 4.6e-13 | 3.3e-13 | 3.4e-13 | 9.4e-13 | 8.9e-13 | 6.1e-13 | 1.1e-12 | 0 | 1.6e-13 | 4.8e-13 | 9.1e-13 | 6e-13 | 1e-12 | 5.3e-13 | 1.6e-13 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/spectrum/tests/test_spectrum_solver/test_spectrum_solver Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/spectrum/tests/test_spectrum_solver/test_spectrum_solver
Significant difference detected in TestSpectrumSolver.h5, key=/simulation/transport/transport_state/virt_packet_last_interaction_in_nu Maximum relative difference: 1.70e-14 (Versions differ by 1.70e-12%)
Displaying heatmap for key /simulation/transport/transport_state/virt_packet_last_interaction_in_nu in file TestSpectrumSolver.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 20 |
| max | 40 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 8.5e-15 |
| max | 1.7e-14 |
Significant difference detected in TestSpectrumSolver.h5, key=/simulation/plasma/j_blues Maximum relative difference: 1.46e-14 (Versions differ by 1.46e-12%)
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/spectrum/tests/test_spectrum_solver/test_spectrum_solver Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/spectrum/tests/test_spectrum_solver/test_spectrum_solver Displaying heatmap for key /simulation/plasma/j_blues in file TestSpectrumSolver.h5 Visualising Absolute Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 1.3e-23 | 8.7e-24 | 7.8e-24 | 5.9e-24 | 5.5e-24 | 4.7e-24 | 6.7e-24 | 4.3e-24 | 3.6e-24 | 4.1e-24 | 3.5e-24 | 4.4e-24 | 2.9e-24 | 2.4e-24 | 2.9e-24 | 2.3e-24 | 2e-24 | 2e-24 | 2.7e-24 | 1.7e-24 |
| max | 2.7e-20 | 2e-20 | 1.4e-20 | 1.4e-20 | 6.8e-21 | 6.8e-21 | 1.4e-20 | 6.8e-21 | 1e-20 | 1e-20 | 3.4e-21 | 6.8e-21 | 3.4e-21 | 3.4e-21 | 6.8e-21 | 6.8e-21 | 5.1e-21 | 3.4e-21 | 6.8e-21 | 3.4e-21 |
Visualising Relative Differences
| Ā | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mean | 5.6e-19 | 4.3e-19 | 7.7e-19 | 4.5e-19 | 1.6e-18 | 5.7e-19 | 1.3e-18 | 6.2e-19 | 6.9e-19 | 4.4e-19 | 5.1e-19 | 1.1e-18 | 7.4e-19 | 5.2e-19 | 5.6e-19 | 5.4e-19 | 6.1e-19 | 8.2e-19 | 5.7e-19 | 8.5e-19 |
| max | 1.4e-15 | 1.2e-15 | 7.4e-15 | 1.1e-15 | 1.4e-14 | 1.5e-15 | 8.4e-15 | 2.6e-15 | 4.1e-15 | 1.4e-15 | 9.3e-16 | 1.4e-14 | 8.3e-15 | 2.2e-15 | 2.3e-15 | 8.7e-16 | 4e-15 | 1.1e-14 | 1.2e-15 | 1.5e-14 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/spectrum/tests/test_spectrum_solver/test_spectrum_solver Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/spectrum/tests/test_spectrum_solver/test_spectrum_solver
Error comparing item: /simulation/plasma/dilute_planckian_radiation_field No module named 'tardis.plasma.radiation_field'
Significant difference detected in TestSpectrumSolver.h5, key=/simulation/transport/transport_state/packet_luminosity Maximum relative difference: 1.35e-14 (Versions differ by 1.35e-12%)
Displaying heatmap for key /simulation/transport/transport_state/packet_luminosity in file TestSpectrumSolver.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 1.4e+23 |
| max | 2.7e+23 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 6.7e-15 |
| max | 1.3e-14 |
Significant difference detected in TestSpectrumSolver.h5, key=/simulation/transport/transport_state/output_nu Maximum relative difference: 1.35e-14 (Versions differ by 1.35e-12%)
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/spectrum/tests/test_spectrum_solver/test_spectrum_solver Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/spectrum/tests/test_spectrum_solver/test_spectrum_solver Displaying heatmap for key /simulation/transport/transport_state/output_nu in file TestSpectrumSolver.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 8.1 |
| max | 16 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 6.7e-15 |
| max | 1.3e-14 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/spectrum/tests/test_spectrum_solver/test_spectrum_solver Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/spectrum/tests/test_spectrum_solver/test_spectrum_solver
Significant difference detected in TestSpectrumSolver.h5, key=/simulation/spectrum_solver/montecarlo_virtual_luminosity Maximum relative difference: 1.51e-14 (Versions differ by 1.51e-12%)
Displaying heatmap for key /simulation/spectrum_solver/montecarlo_virtual_luminosity in file TestSpectrumSolver.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 1.3e+24 |
| max | 2.4e+24 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 7.6e-15 |
| max | 1.5e-14 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/spectrum/tests/test_spectrum_solver/test_spectrum_solver Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/spectrum/tests/test_spectrum_solver/test_spectrum_solver
Significant difference detected in TestSpectrumSolver.h5, key=/simulation/spectrum_solver/spectrum_virtual_packets/luminosity Maximum relative difference: 1.51e-14 (Versions differ by 1.51e-12%)
Displaying heatmap for key /simulation/spectrum_solver/spectrum_virtual_packets/luminosity in file TestSpectrumSolver.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 1.3e+24 |
| max | 2.4e+24 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 7.6e-15 |
| max | 1.5e-14 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/spectrum/tests/test_spectrum_solver/test_spectrum_solver Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/spectrum/tests/test_spectrum_solver/test_spectrum_solver
Significant difference detected in TestSpectrumSolver.h5, key=/simulation/transport/transport_state/virt_packet_nus Maximum relative difference: 2.17e-14 (Versions differ by 2.17e-12%)
Displaying heatmap for key /simulation/transport/transport_state/virt_packet_nus in file TestSpectrumSolver.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 24 |
| max | 48 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 1.1e-14 |
| max | 2.2e-14 |
Significant difference detected in TestSpectrumSolver.h5, key=/simulation/spectrum_solver/spectrum_virtual_packets/luminosity_density_lambda Maximum relative difference: 1.50e-14 (Versions differ by 1.50e-12%)
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/spectrum/tests/test_spectrum_solver/test_spectrum_solver Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/spectrum/tests/test_spectrum_solver/test_spectrum_solver Displaying heatmap for key /simulation/spectrum_solver/spectrum_virtual_packets/luminosity_density_lambda in file TestSpectrumSolver.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 1e+32 |
| max | 2e+32 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 7.6e-15 |
| max | 1.5e-14 |
Significant difference detected in TestSpectrumSolver.h5, key=/simulation/spectrum_solver/spectrum_real_packets_reabsorbed/luminosity Maximum relative difference: 1.13e-13 (Versions differ by 1.13e-11%)
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/spectrum/tests/test_spectrum_solver/test_spectrum_solver Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/spectrum/tests/test_spectrum_solver/test_spectrum_solver Displaying heatmap for key /simulation/spectrum_solver/spectrum_real_packets_reabsorbed/luminosity in file TestSpectrumSolver.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 3.9e+25 |
| max | 7.7e+25 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 5.8e-14 |
| max | 1.1e-13 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/spectrum/tests/test_spectrum_solver/test_spectrum_solver Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/spectrum/tests/test_spectrum_solver/test_spectrum_solver Displaying heatmap for key /simulation/transport/transport_state/j_estimator in file TestSpectrumSolver.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 0.11 |
| max | 0.16 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 1.8e-15 |
| max | 2.5e-15 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/spectrum/tests/test_spectrum_solver/test_spectrum_solver Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/spectrum/tests/test_spectrum_solver/test_spectrum_solver
Displaying heatmap for key /simulation/transport/transport_state/nu_bar_estimator in file TestSpectrumSolver.h5 Visualising Absolute Differences
| Ā | 0 |
|---|---|
| mean | 7.7e+13 |
| max | 1e+14 |
Visualising Relative Differences
| Ā | 0 |
|---|---|
| mean | 1.9e-15 |
| max | 2.8e-15 |
Path1: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref1/tardis/spectrum/tests/test_spectrum_solver/test_spectrum_solver Path2: /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w/ref2/tardis/spectrum/tests/test_spectrum_solver/test_spectrum_solver ================================================== Summary for TestSpectrumSolver.h5: Total number of keys- in ref1: 93, in ref2: 93 Number of keys with different names in ref1 and ref2: 0 Number of keys with same name but different data in ref1 and ref2: 30 Number of totally same keys: 62 ==================================================
Testing individual files¶
You can compare individual files too. Below example would work if you used example commits.
# comparer.hdf_comparator.summarise_changes_hdf("test_generate_plot_ply__plotter_generate_plot_ply1__.h5",
# Path(comparer.ref1_path) / "tardis/visualization/tools/tests/test_liv_plot/test_liv_plotter",
# Path(comparer.ref2_path) / "tardis/visualization/tools/tests/test_liv_plot/test_liv_plotter"
# )
HDF File Comparison¶
Below graph visualises all the HDF files that changed. Each block represents a key that changed, hovering on that block would show relative percentage change for that key.
fig_same_name = comparer.generate_graph("different keys same name")
fig_different_keys = comparer.generate_graph("different keys")
Error calculating diff for key /data: The truth value of an array with more than one element is ambiguous. Use a.any() or a.all()
Generating graph with updated hovertemplate
Saved plot to comparison_plots_552b56_new_b2fdf4_old/same_name_diff.png Generating graph with updated hovertemplate
fig_different_keys
fig_same_name.layout.width = 1000
fig_same_name
Spectrum Comparison¶
You can compare TARDIS spectra for the two commits and also provide a custom path for the spectra.
comparer.compare_testspectrumsolver_hdf(
custom_ref1_path=Path(comparer.ref1_path) / custom_ref1_spectrum_path,
custom_ref2_path=Path(comparer.ref2_path) / custom_ref2_spectrum_path
)
/Users/runner/work/tardis/tardis/tardis-regression-data/compare.py:332: UserWarning: This figure includes Axes that are not compatible with tight_layout, so results might be incorrect.
Saved spectrum plot to comparison_plots_552b56_new_b2fdf4_old/spectrum.png
comparer.teardown()
Removed temporary directory /var/folders/2s/h6hvv9ps03xgz_krkkstvq_r0000gn/T/ref_compare_wyvnpk0w